ASP.net routing on IIS 6 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T23:59:51Z http://stackoverflow.com/feeds/question/811871 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/811871/asp-net-routing-on-iis-6 2 ASP.net routing on IIS 6 Peter 2009-05-01T15:28:23Z 2009-11-24T06:24:56Z <p>Hi</p> <p>I have created a basic site using ASP.net routing according to Mike Ormond's example "Using ASP.net routing Independent of MVC". This works fine on my local machine running the built-in web server.</p> <p>However, when I deploy it to my server (Win2003, IIS 6, ASP.net 3.5 SP1) it just shows a 404 error.</p> <p>I have read somewhere that I am meant to set up wildcard routing. Can someone help me on this and any other configuration that needs to be done to make it work on my server?</p> <p>Thanks</p> <p>Peter</p> http://stackoverflow.com/questions/811871/asp-net-routing-on-iis-6/811879#811879 5 Answer by John Nolan for ASP.net routing on IIS 6 John Nolan 2009-05-01T15:30:49Z 2009-05-01T15:30:49Z <p>You will find some good information <a href="http://blog.codeville.net/2008/07/04/options-for-deploying-aspnet-mvc-to-iis-6/" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/811871/asp-net-routing-on-iis-6/811899#811899 2 Answer by hilkiah for ASP.net routing on IIS 6 hilkiah 2009-05-01T15:35:46Z 2009-05-01T15:35:46Z <p>Hi Peter,</p> <p>You can find the "official" discussion of wildcard mappings on <a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/5c5ae5e0-f4f9-44b0-a743-f4c3a5ff68ec.mspx?mfr=true" rel="nofollow">TechNet here</a> but I like Phil Haack's walkthrough that you can <a href="http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx" rel="nofollow">find here</a>. Don't worry about the fact that it's a discussion of setting up MVC, just look for the section titled "IIS6 Extension-less URLs" - that set up applies to both MVC and using routing with a classic WebForms app.</p> <p>Regards, brian</p> http://stackoverflow.com/questions/811871/asp-net-routing-on-iis-6/811959#811959 2 Answer by Chris Pebble for ASP.net routing on IIS 6 Chris Pebble 2009-05-01T15:50:30Z 2009-05-01T15:50:30Z <p>On the server, open IIS:</p> <ol> <li>Right-click on the site/virtual directory, select properties</li> <li>Goto the Home Directory/Virtual Directory tab, click Configuration (near the bottom)</li> <li>Near the bottom again, click the insert button</li> <li>Enter <strong>C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll</strong></li> <li><strong>Uncheck</strong> the "Verify that file exists" button, click Okay and close all the dialogues</li> </ol> http://stackoverflow.com/questions/811871/asp-net-routing-on-iis-6/1178625#1178625 0 Answer by kamiwa for ASP.net routing on IIS 6 kamiwa 2009-07-24T16:03:56Z 2009-07-24T16:03:56Z <p>Under IIS 6 64 bit, make sure that the path under 4.) points to <strong>C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll</strong></p> http://stackoverflow.com/questions/811871/asp-net-routing-on-iis-6/1788206#1788206 0 Answer by Alex Ilyin for ASP.net routing on IIS 6 Alex Ilyin 2009-11-24T06:24:56Z 2009-11-24T06:24:56Z <p>Url rewriting can help you to solve the problem. I've implemented solution allowing to deploy MVC application at any IIS version even when virtual hosting is used. <a href="http://www.codeproject.com/KB/aspnet/iis-aspnet-url-rewriting.aspx" rel="nofollow">http://www.codeproject.com/KB/aspnet/iis-aspnet-url-rewriting.aspx</a></p>