求救:分析器错误信息: 无法识别的配置节“RewriterConfig”
<httpModules>
。。。</httpModules>
<httpHandlers>
。。。</httpHandlers>
</system.web>
<RewriterConfig>
<Rules>
<RewriterRule>
<LookFor>。。。</LookFor>
<SendTo>。。。</SendTo>
</RewriterRule>
</Rules>
</RewriterConfig>
</configuration>
为什么键入index.aspx报错:
配置错误
说明: 在处理向该请求提供服务所需的配置文件时出错。请检查下面的特定错误详细信息并适当地修改配置文件。
分析器错误信息: 无法识别的配置节“RewriterConfig”
源错误:
行 107:
行 108:</system.web>
行 109:<RewriterConfig>
行 110: <Rules>
行 111: <RewriterRule>
问题点数:10、回复次数:1Top
1 楼gdeljyh(Hungry)回复于 2005-10-09 17:29:23 得分 0
要在configuration中加上
<configSections>
<section name="RewriterConfig" type="URLRewriter.Config.RewriterConfigSerializerSectionHandler, URLRewriter" />
</configSections>Top




