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
I solved the issue, the major issue was the different versions of MVC framework. Production Server was having MVC Beta while i have installed MVC RC1. So as soon as i installed the RC1 on the server as well as run the mvc extension registeration scripts, everything worked Thanks for your help guys