Is it absolutely necessary to manually configure IIS6 to use ASP.NET MVC? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T17:24:20Zhttp://stackoverflow.com/feeds/question/570147http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/570147/is-it-absolutely-necessary-to-manually-configure-iis6-to-use-asp-net-mvc4Is it absolutely necessary to manually configure IIS6 to use ASP.NET MVC?Juan Manuel2009-02-20T16:08:30Z2009-02-20T16:24:13Z
<p>I have a web hosting that replied to me it was not possible to alter the IIS6 settings to set the mapping of .mvc to the Asp.Net ISAPI dll, nor enable Wildcard Application Mappings.</p>
<p>In short, I cannot change any IIS setting.</p>
<p>Is there any way to run ASP.NET Mvc in that conditions?</p>
<p><strong>Note</strong>: I read a few related questions here about this, but didn't understand them in some cases, and it wasn't what I needed in others. I'd appreciate it if before closing this one as duplicate, there was an explanation as to why, and perhaps a paraphrasing of another question.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/570147/is-it-absolutely-necessary-to-manually-configure-iis6-to-use-asp-net-mvc/570177#5701770Answer by Jedi Master Spooky for Is it absolutely necessary to manually configure IIS6 to use ASP.NET MVC?Jedi Master Spooky2009-02-20T16:13:46Z2009-02-20T16:13:46Z<p>For what I investigated you have to ways, one is to tell IIS that all pages has to go thru ASP.NET - gif , css etc. - this way asp.net knows how to process every page. The other is to write a HttpModule, or something like this. I did the first one. I dont believe that you have any other option.</p>
<p>Maybe this will help:
<a href="http://stackoverflow.com/questions/34194/asp-net-mvc-on-iis6">http://stackoverflow.com/questions/34194/asp-net-mvc-on-iis6</a></p>
http://stackoverflow.com/questions/570147/is-it-absolutely-necessary-to-manually-configure-iis6-to-use-asp-net-mvc/570222#5702221Answer by Gulzar for Is it absolutely necessary to manually configure IIS6 to use ASP.NET MVC?Gulzar2009-02-20T16:24:13Z2009-02-20T16:24:13Z<p>if mapping to .aspx exist, try the solution found <a href="http://forums.asp.net/p/1239943/2294813.aspx" rel="nofollow">here</a> to add a route to end up in *.mvc.aspx</p>
<pre><code>routes.Add(new Route("{controller}.mvc.aspx/{action}", new MvcRouteHandler())
{
Defaults = new RouteValueDictionary (new{ controller = "YourController"} )
});
</code></pre>