ASP redirect script
PHP (or non-ASP) developers: if you ever need to create a redirect script on an IIS server using ASP, just create a file called 'index.asp' or 'default.asp' and add the following line:
<% Response.Redirect "http://domain.com" %>
You can then point the redirect the browser to the location of your own PHP code.

