尝试将 ASP.Net MVC 1.0 项目更新到 MVC 2.0
我正在尝试将我的项目从 MVC 1.0 更新到 ASP.Net MVC 2.0。我已删除了对较新版本的 System.Web.MVC 的引用。我从 HTTPContext 中收到一个异常,其中显示“CurrentNotification = 'HttpContext.Current.CurrentNotification' 引发了类型为 'System.PlatformNotSupportedException' 的异常”。我还需要更新哪些其他二进制文件的引用才能使我的项目再次运行?
I'm trying to update my project to ASP.Net MVC 2.0 from MVC 1.0. I've removed the references for System.Web.MVC to the newer versions. I'm getting an exception from the HTTPContext which reads "CurrentNotification = 'HttpContext.Current.CurrentNotification' threw an exception of type 'System.PlatformNotSupportedException'". What other binaries do I need to update a reference to, to get my project to work again?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://weblogs.asp.net/leftslipper/archive/2010/03/10/migration-asp-net-mvc-1-0-applications-to-asp-net- mvc-2-rtm.aspx
http://weblogs.asp.net/leftslipper/archive/2010/03/10/migrating-asp-net-mvc-1-0-applications-to-asp-net-mvc-2-rtm.aspx
抛出这个异常是因为
并且可能与 ASP.NET MVC 2.0 无关。
This exception is thrown because
and may not be related to ASP.NET MVC 2.0.