You can set 301 redirection (Permanent Redirection) using the below ASP code. It helps to search engines to redirect to the new web site:
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.new-web-site-location.com/"
%>
Kevin