Is there a built in method to handle urls like Default.aspx/mycontent or do I need to handle it myself by taking the url and stripping of the file’s path?
I have tried searching for it but haven’t been able to find anything.
I’d like to handle .aspx/parameters and am not looking at Mod/URL Rewrite.
Take a look at ASP.NET MVC. This framework obviously goes far beyond just ‘user-friendly’ URLs, but it does also handle this as a byproduct.
Or you could just write a HttpFilter…