gpt4 book ai didi

asp.net-mvc - ASP.NET MVC web.config(多个)问题

转载 作者:行者123 更新时间:2023-12-04 07:08:34 26 4
gpt4 key购买 nike

我在我的服务器上运行我的 MVC 项目时遇到问题。服务器上的主项目有它自己的 web.config 文件(在 configsections 中引用了 1.0 版本),而“虚拟子项目”也有一个(引用了 3.5 版本)。我收到以下错误:

配置错误
说明:在处理为该请求提供服务所需的配置文件期间发生错误。请查看下面的特定错误详细信息并适当修改您的配置文件。
解析器错误消息:节或组名称“system.web.extensions”已定义。对此的更新可能只发生在定义它的配置级别。

主 web.config(位置:http://servername/web.config)部分:

sectionGroup name="system.web.extensions"type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"

子项目 web.config(位置:http://servername/subproject/web.config)部分:

sectionGroup name="system.web.extensions"type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"

最佳答案

尝试删除子项目 web.config 中第二个定义之前的部分。

见:http://forums.iis.net/t/1155685.aspx

You can remove predefined section or section group by using element in the sub sites' web config file. It looks like this:


<configuration>
<configSections>
<remove name="system.web.extensions "/>
<!-- Add your new section or section group -->
</configSections>
</configuration>

想要查询更多的信息,

please refer to: <remove> Element for <configSections> http://msdn.microsoft.com/en-us/library/aa309404(VS.71).aspx

关于asp.net-mvc - ASP.NET MVC web.config(多个)问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/725563/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com