FineUI配置文件

<configuration>
  <configSections>
    <section name="FineUI" type="FineUI.ConfigSection, FineUI" requirePermission="false" />
  </configSections>
  <!-- 可用的配置项(这里列的都是默认值):
      Language="zh_CN"
      AjaxTimeout="120"
      EnableAjax="true"
      Theme="Neptune"
      FormMessageTarget="Qtip"
      FormOffsetRight="0"
      FormLabelWidth="100"
      FormLabelSeparator=":"
      IconBasePath="~/res/icon"
      EnableAjaxLoading="true"
      AjaxLoadingType="default"
      CustomTheme=""
      CustomThemeBasePath="~/res/theme"
  -->
  <FineUI DebugMode="false" />
  <appSettings />
  <connectionStrings />
  <system.web>
    <pages controlRenderingCompatibilityVersion="4.0" clientIDMode="AutoID">
      <controls>
        <add assembly="FineUI" namespace="FineUI" tagPrefix="f" />
      </controls>
    </pages>

    <httpRuntime maxRequestLength="102400 " />
    <customErrors mode="Off" />
    <compilation debug="true" targetFramework="4.5" />
    <!--
    <authentication mode="Forms">
      <forms name=".ASPXFORMSAUTH" loginUrl="~/default.aspx" timeout="120" defaultUrl="~/main.aspx" protection="All" path="/"/>
    </authentication>
    <authorization>
      <deny users="?"/>
    </authorization>
    -->
  </system.web>
  <!--
  <location path="res.axd">
    <system.web>
      <authorization>
        <allow users ="*" />
      </authorization>
    </system.web>
  </location>
  -->

  <system.webServer>
    <modules>
      <add name="FineUIScriptModule" type="FineUI.ScriptModule, FineUI"/>
    </modules>
    <handlers>
      <add name="FineUIResourceHandler" verb="GET" path="res.axd" type="FineUI.ResourceHandler, FineUI"/>
    </handlers>
  </system.webServer>
 
</configuration>

posted @ 2016-12-09 16:39  守夜人1  阅读(365)  评论(0编辑  收藏  举报