I Recently uploaded a new homepage, built in .Net MVC (www.ofiryaron.com)
Trying to upload the new site to my GoDaddy hosting account I was facing a problem:
The account was preconfigured as an IIS 7 server with two pipeline choices: Classic Mode and Integrated Mode.
Classic mode behaves the same as IIS 6 and uses two piplines, one for native code and another for managed code,
Integrated mode uses a unified pipeline that allows an easier access to the request process points.
checking these two different pipeline modes I discovered that in the classic mode my blog (BlogEngine.Net) that is hosted on the same account on a subdomain is working well, but my MVC site will not proccess any request beside the homepage (homepage works well because of the default.aspx, while other requests should pass through the URL Routing that is failing for some reason)
Integrated mode does the opposite, the subdomain doesn't work well (Every URL including the subdomains go through the MVC rewrite rules I think) and the MVC site acts normal.
For now I cannot see how this could be resolved, the two different sites require two diffrent pipeline mode.
I'v contact GoDaddy to consult them with the issue and hopefully there will be an answer soon... for now I gave up on the homepage, bare with me.