|
redleaf 发表于 2012-3-27 09:34
我用很早的版本中也是这样的,新版本中没有遇到
<?xml version="1.0"?>
<configuration>
<configSections>
<section name="ExtAspNet" type="ExtAspNet.ConfigSection, ExtAspNet" requirePermission="false"/>
</configSections>
<!-- 可用的配置项(这里列的都是默认值): Language="zh_CN" AjaxTimeout="60" EnableAjax="true" Theme="blue" FormMessageTarget="qtip" FormOffsetRight="20" FormLabelWidth="100" FormLabelSeparator=":" -->
<ExtAspNet EnableBigFont="true" DebugMode="false" />
<appSettings/>
<connectionStrings/>
<system.web>
<pages>
<controls>
<add assembly="ExtAspNet" namespace="ExtAspNet" tagPrefix="ext"/>
</controls>
</pages>
<httpModules>
<add name="ExtAspNetScriptModule" type="ExtAspNet.ScriptModule, ExtAspNet"/>
</httpModules>
<httpHandlers>
<add verb="GET" path="res.axd" type="ExtAspNet.ResourceHandler, ExtAspNet"/>
</httpHandlers>
<customErrors mode="Off"/>
<compilation debug="true"/>
</system.web>
<!-- 兼用 IIS7 模式
<system.webServer>
<modules>
<add name="ExtAspNetScriptModule" type="ExtAspNet.ScriptModule, ExtAspNet"/>
</modules>
<httpErrors errorMode="Detailed"/>
<asp scriptErrorSentToBrowser="true"/>
</system.webServer>
-->
</configuration> |
|