I am currently deploying my application built using RC of MVC ASP.NET on the production server which is showing nothing now.
The routes in my global.ascx are typical i.e.
routes.MapRoute(
"Default", // Route name
"{controller}.aspx/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" } // Parameter defaults
);
routes.MapRoute(
"Root",
"",
new { controller = "Home", action = "Index", id = "" }
);
Can any one figure out why it is showing me only blank pages
Sorry i forget to mention the it is IIS 6
Interestingnly it is also working on my local IIS (i.e. both local built in with VS & standard with XP) as well
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…