0

我有旧版 ASP.NET 网站,从 ASP.NET 2.0 升级到 ASP.NET 4.0 目标框架。很遗憾,但是旧的 web.config 文件使用了太多的自定义部分,与 appSettings 处于同一级别。

网站编译出错"Unrecognized configuration section MyCustomSection"。是否可以不重构所有代码并将自定义配置部分保留在 web.config 文件中?

4

1 回答 1

2

您是否已将 MyCustomSection 添加到配置部分?

<configSections>
<section name="MyCustomSection"... />
</configSections>
于 2012-03-07T15:36:49.763 回答