Example of ISAPI myRewrite Filter

Note:
The following ASP VbScript was used to produce the results below

<%

for each item in request.querystring()
         response.write(item & " = " & request(item) & "<br />")
next

%>


Results

v1 = cars
v2 = ford
v3 = escort

Summary

Effectively the page is being called by the url http://www.mediamodus.com/cars.asp?v1=cars&v2=ford&v3=escort

So as you can see implementing url rewrite in classic asp should be no fuss at all, this module makes it very easy.
The first QueryString variable returned represents the file name minus the file extension (.asp), the following variables ( v2, v3 ) represent each item after the following slash.

As you add more slashes you will increase the number of variables available. each variable name is made up of the letter v + [number] where number is the position of the string appeared in the url.


Easy!

Ok take me back to the ISAPI myRewrite Filter page