views:

60

answers:

2

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?

A: 

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.

bzlm