What if you include the "rsolberg" part of the path in your routing in global.asax?
jlembke
2009-04-25 16:37:37
What if you include the "rsolberg" part of the path in your routing in global.asax?
This can happen if the MVC handler is not processing your requests. Here are some things you can try:
Set your routes to include .aspx: {controller}.aspx/{action}/{id}
Find out if your Hosting server is on IIS7. If it is, make sure that the App Pool pipeline mode is set to integrated. With this, the handler configuration in your web.config will work without having to modify your routes.