gpt4 book ai didi

asp.net-mvc - 'System.Web.Mvc.ViewPage'类型不明确

转载 作者:行者123 更新时间:2023-12-03 17:48:04 26 4
gpt4 key购买 nike

升级ASP.NET MVC版本后,会发生此问题。

The type 'System.Web.Mvc.ViewPage' is ambiguous: it could come from assembly...

最佳答案

我看到您已经为自己提供了答案,但是另一种解决方案是使用<runtime>元素更新您的web.config,该元素重定向相关程序集并指向正确的程序集:

 <runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>

请注意,对于大多数程序集而言,从NuGet更新项目会自动为您执行相同的操作。

关于asp.net-mvc - 'System.Web.Mvc.ViewPage'类型不明确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17635677/

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