Is there any way in ASP to rewrite URIs without having to use a commercial product like ISAPI Rewrite?
I know that ASP.Net has the Application BeginRequest event, which can be used to rewrite URIs, and I am considering making a hybrid web application that has only enough .Net to give me URI rewriting and then have everything else in classic ASP. (I plan to code it so that the site will operate even if URI rewriting is not working.)
But it would be far superior if I could avoid that hassle. You can make backups of ASP projects or move them to a new server just by copying the files, but ASP.Net requires compilation...
I know that ASP.Net has the Application BeginRequest event, which can be used to rewrite URIs, and I am considering making a hybrid web application that has only enough .Net to give me URI rewriting and then have everything else in classic ASP. (I plan to code it so that the site will operate even if URI rewriting is not working.)
But it would be far superior if I could avoid that hassle. You can make backups of ASP projects or move them to a new server just by copying the files, but ASP.Net requires compilation...