I have a website that's in Classic ASP on a hosted server. I'd like to be able to create some "virtual" pages so I can specify google-friendly URLs that translate to ASPs
eg www.mydomain.com/this_is_the_help_page
instead of www.mydomain.com/admin/helpsubsystem/help.aspx?current_user etc
As the server also supports ASP.NET - could I use an HTTP Handler to intercept these calls and do any necessary translations?
M