A while back I posted how to code a
search engine friendly redirect in ASP.NET. Recently I've had to go old school and preform this task in Classic ASP. Here is the VBScript version of a search engine friendly redirect.
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://example.com/newpage/"
Response.End
%>
Labels: ASP, SEO, VBscript