The link that I use to my online collection is broken.
http://www.dvdprofiler.com/mycollection.asp?alias=tbeecher
When I click on it a file called mycollection.asp is downloaded. The file consists of:
<% Option Explicit dim Alias
' Set this page to expire immediately Response.Expires = -1
' Get selected alias from URL, if available Alias = Request.QueryString("alias") if (Alias = "") then Alias = Request.QueryString("name") if (Alias = "") then Alias = Request.QueryString("a") if (Alias = "") then Alias = Request.QueryString("n")
Response.Redirect("http://www.invelos.com/DVDCollection.aspx/" & Alias) %> |