vote up 2 vote down star
1

Hi

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.

However, when I deploy it to my server (Win2003, IIS 6, ASP.net 3.5 SP1) it just shows a 404 error.

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?

Thanks

Peter

flag

4 Answers

vote up 4 vote down check

You will find some good information here.

link|flag
vote up 2 vote down

Hi Peter,

You can find the "official" discussion of wildcard mappings on TechNet here but I like Phil Haack's walkthrough that you can find here. 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.

Regards, brian

link|flag
vote up 1 vote down

On the server, open IIS:

  1. Right-click on the site/virtual directory, select properties
  2. Goto the Home Directory/Virtual Directory tab, click Configuration (near the bottom)
  3. Near the bottom again, click the insert button
  4. Enter C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll
  5. Uncheck the "Verify that file exists" button, click Okay and close all the dialogues
link|flag
vote up 0 vote down

Under IIS 6 64 bit, make sure that the path under 4.) points to C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.