Deploy .net MVC 2 appication on IIS6
- by munish
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