Redirect
redirect
REDIRECT This is some language for use in an .aspx file. It will send a 301 "moved" response and redirect to the location of your choosing. Just change that URL in there to whatever you want.
<%
Response.Status="301 Moved Permanently"
Response.AddHeader ("Location", "http://www.EXAMPLE.com")
Response.End()
%>
...sometimes the URL you're trying to redirect contains a variable. Try something like this
<%
Response.Status="301 Moved Permanently"
Response.AddHeader ("Location", "http://thewalters.org/news/releases/article.aspx?newvariable=" & request.querystring("oldvariable"))
%>