如何将自定义配置部分添加到现有<system.web>
部分下的 .NET web.config 文件?
问问题
149 次
2 回答
3
尝试使用此代码
<configSections>
<section name="" type="System.Configuration.DictionarySectionHandler, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<sectionGroup name="system.web">
<section name="test" type="DataSetSectionHandler,SectionHandlers" />
</sectionGroup>
</configSections>
<system.web>
<compilation debug="true"/>
<authentication mode="Windows" />
<test attribute="..." />
</system.web>
于 2012-09-06T17:47:43.293 回答
-1
你不能在里面添加自定义配置部分<system.web>
。您可以将自定义配置部分放在<configuration>
. 检查这个如何。
于 2012-09-06T17:50:56.127 回答