在开发项目之前请配置好 Web.config:
  1. 设置 configuration 配置节:
        <configSections>
            <section name="FineUI" type="FineUI.ConfigSection, FineUI"/>
        </configSections>
    
        <!-- 可用的配置项(这里列的都是默认值):
                Theme="Neptune" 
                Language="zh_CN" 
                AjaxTimeout="120" 
                EnableAjax="true" 
                DebugMode="false"
                FormMessageTarget="Qtip" 
                FormOffsetRight="0" 
                FormLabelWidth="100" 
                FormLabelSeparator=":" 
                FormLabelAlign="Left" 
                EnableAjaxLoading="true" 
                AjaxLoadingType="Default" 
                CustomTheme="" 
                IconBasePath="~/res/icon" 
                CustomThemeBasePath="~/res/theme" 
                JSBasePath="~/extjs"
                IEEdge="true" 
        -->
        <FineUI DebugMode="false" />
                
    FineUI 配置节中的参数:


  2. 设置 system.web 配置节:
    <system.web>
        <pages>
          <controls>
            <add assembly="FineUI" namespace="FineUI" tagPrefix="f"/>
          </controls>
        </pages>
        
        <httpModules>
          <add name="FineUIScriptModule" type="FineUI.ScriptModule, FineUI"/>
        </httpModules>
    
        <httpHandlers>
          <add verb="GET" path="res.axd" type="FineUI.ResourceHandler, FineUI" validate="false"/>
        </httpHandlers>
    <system.web>
            
  3. 完成。

常见问题:


更多常见问题:http://fineui.com/bbs/forum.php?mod=viewthread&tid=655