I am trying to deploy ASP.NET MVC3 on IIS 5.1. I was able to go to home page. But, on navigation, I am getting error saying page not found.
i tried changing routing in global.asax, but not of much help.
routes.MapRoute(
"Default",
"{controller}.mvc/{action}/{id}",
new { action = "Index", id = "" }
);
routes.MapRoute(
"Root",
"",
new { controller = "Home", action = "Index", id = "" }
);
Should i make any other changes in Global.asax
I tried following this link, but not of much help with IIS5.1
http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx