Deploy .net MVC 2 appication on IIS6
Posted
by
munish
on Stack Overflow
See other posts from Stack Overflow
or by munish
Published on 2011-01-12T04:45:04Z
Indexed on
2011/01/12
4:53 UTC
Read the original article
Hit count: 248
I want to deploy my .net MVC 2 appication on IIS6.0. Will it require to change route path in global.asax file.
In my application i have used html link, ajax request and Html.ActionLink.
The code lines in the Global.asax file are:
routes.MapRoute(
"LogOn",
"{controller}/{action}/{id}",
new { controller = "Account", action = "Index", id = UrlParameter.Optional }
);
Please suggest me.
Thanks and Regards Munish
© Stack Overflow or respective owner