59 lines
2.1 KiB
XML
59 lines
2.1 KiB
XML
<?xml version="1.0"?>
|
||
<configuration>
|
||
<configSections>
|
||
<section name="FineUI" type="FineUI.ConfigSection, FineUI" requirePermission="false"/>
|
||
</configSections>
|
||
<!-- 可用的配置项(这里列的都是默认值): Language="zh_CN" AjaxTimeout="60" EnableAjax="true" Theme="Blue" FormMessageTarget="Qtip" FormOffsetRight="20" FormLabelWidth="100" FormLabelSeparator=":" FormLabelAlign="Left" IconBasePath="~/icon" EnableAjaxLoading="true" AjaxLoadingType="Default" CustomTheme="" CustomThemeBasePath="~/theme" ExtjsBasePath="~/extjs" -->
|
||
<FineUI DebugMode="true" />
|
||
<appSettings/>
|
||
<connectionStrings/>
|
||
<system.web>
|
||
<!-- Net3.5以上的项目,一定要为pages节点加上这两个属性:controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID" -->
|
||
<pages>
|
||
<controls>
|
||
<add assembly="FineUI" namespace="FineUI" tagPrefix="x"/>
|
||
</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>
|
||
<httpRuntime maxRequestLength="102400 "/>
|
||
<customErrors mode="Off"/>
|
||
<compilation debug="true"/>
|
||
|
||
<!--
|
||
<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>
|
||
-->
|
||
<!-- IIS7 Integrated Mode
|
||
<system.webServer>
|
||
<modules>
|
||
<add name="FineUIScriptModule" type="FineUI.ScriptModule, FineUI"/>
|
||
</modules>
|
||
<handlers>
|
||
<add name="FineUIResourceHandler" verb="GET" path="res.axd" type="FineUI.ResourceHandler, FineUI" validate="false"/>
|
||
</handlers>
|
||
<httpErrors errorMode="Detailed"/>
|
||
<asp scriptErrorSentToBrowser="true"/>
|
||
</system.webServer>
|
||
-->
|
||
</configuration>
|