答案 0 :(得分:5)
您可以将配置拆分为多个文件,并使用configSource属性将这些部分包含在主web.config文件中,例如:
的web.config:
<system.web>
...
<profile configSource="profile.config" />
...
</system.web>
profile.config:
<profile>
<properties>
<add name="Name" type="String" />
<add name="Age" type="Int32" />
</properties>
</profile>
有关详细信息,请参阅this blog post或this question。