Reaching out here... I have an ASP.NET MVC app, which runs flawlessly on VS2008 dev server and IIS7. However, deploying on IIS6 yields blank pages and no error message in event logs either. Very frustrating!
I've tried the wildcard mapping techniques, extension based routing ({controller}.aspx/{action}) and every config variation I could think of.
Does anybody have any ideas for troubleshooting a problem like this? Why would IIS serve up a blank page instead of something real (like an error). Memory issues? Machine has 4Gig of RAM, so that shouldn't be an issue.
Logging in the application shows that the Global.asax file is being processed successfully up until Session_Start. After that (when routing should take over), it stops.
Any ideas would be appreciated!