vote up 1 vote down star

I have a weird problem with routing. I have an existing website that I am trying to add this to. It works, but only if .aspx is on the end of the URL. If I remove the .aspx, it gives me an error: "The resource cannot be found." I created a quick test website and copied the code over to it, it works just fine. The code between the 2 are identical. Both are running on the VS 2008 web server. I just don't get it. Any ideas?

Thanks, Vincent

flag
what version of IIS? And if 7 what pipeline mode are you using? – olle Aug 26 at 19:49
I am just using the built-in web server with VS 2008. – vincentw56 Aug 26 at 20:31

2 Answers

vote up 0 vote down check

Okay, I found the problem. I don't understand why this caused the problem, but if there is a period (.) anywhere in the URL, it errors.

I had this: http://localhost%3A49463/site.dev/products/keylessentrykits

When I changed it to: http://localhost%3A49463/sitedev/products/keylessentrykits, removing the period between site and dev, it worked fine.

Anyone have a clue to why this is? Is it a bug?

Also, I should have said something before, but this is not an MVC app.

link|flag
vote up 0 vote down

I think you need to set the ISAPI dll to handle all files (i.e. add a wildcard). It's working because it's set to handle .aspx.

link|flag
I am only using the built-in web server in VS 2008. – vincentw56 Aug 26 at 20:31

Your Answer

Get an OpenID
or

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