Odd Things of ASP.NET MVC Deployment on IIS 6

Posted by misaxi on Stack Overflow See other posts from Stack Overflow or by misaxi
Published on 2011-01-30T07:23:05Z Indexed on 2011/01/30 7:25 UTC
Read the original article Hit count: 145

Filed under:
|

Recently, I am a bit interested in the deployment of ASP.NET MVC application on IIS6 because Phil Haack posted an easier way to deploy ASP.NET MVC application on ASP.NET 4. So I decided to see how different version of ASP.NET MVC works on different version of ASP.NET. First off, I created an ASP.NET MVC 2 project in Visual Studio 2010 and deploy it to IIS 6 on Windows Server 2003 (only .NET framework 3.5 installed). I set the application to run in ASP.NET 2.0 and no extra stuff. Because I just wanted to see what sort of error would occur. And as expected, some error was reported as following.

enter image description here

Then, I set the Copy Local attribute of System.Web.Mvc assembly to true as following and deploy again.

enter image description here

As a result, the application ran smoothly.

enter image description here

I had read tons of materials talked about the mess of deploying MVC application on IIS 6. And I did fight to tackle the deploying issues in my previous project. At least, if had used Extensionless Url in your application, you should have configured wildcard mapping in IIS. But in this case, I even didn’t have chance to do so.

enter image description here

What the heck was going on exactly? Did I discover a new continent?

© Stack Overflow or respective owner

Related posts about asp.net-mvc

Related posts about iis6