I am running MVC 3 on Visual Studio 2010 using IIS 5.1 and Framework 4.0.
It works fine using Visual Studio built in web server but as soon as I start using IIS 5.1 it does not work.
I also added application extension mapping (.*) using aspnet_isapi.dll but as soon as I add that, Visual Studio 2010 does not even let me debug the application and throws an error saying the resource cannot be found.
I have been pulling out my hair for 8 hours. If this does not work, I would have to revert back to ASP.NET web forms.
Could anyone please please help me?
I found out that MVC does not like dot in the name of an application. So if it’s like
test.mvc, it will throw an error. After removing the dot, it all works.