如何在现有<system.web>
部分下的.NET web.config文件中添加自定义配置部分?
答案 0 :(得分: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>
答案 1 :(得分:-1)
不允许在<system.web>
内添加自定义配置部分。您可以在<configuration>
下设置自定义配置部分。请检查此how to。