Trying to update an ASP.Net MVC 1.0 project to MVC 2.0
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.P开发者_运维问答latformNotSupportedException'". What other binaries do I need to update a reference to, to get my project to work again?
http://weblogs.asp.net/leftslipper/archive/2010/03/10/migrating-asp-net-mvc-1-0-applications-to-asp-net-mvc-2-rtm.aspx
This exception is thrown because
The operation requires integrated pipeline mode in IIS 7.0 and at least the .NET Framework version 3.0.
and may not be related to ASP.NET MVC 2.0.
精彩评论