Lots of ways to do this.
If you are using IIS, you can take care of this by going to the Web Site Property settings and selecting the "Home-Directory Tab. For the content source, you can choose "Redirection to another URL" If you do,the Redirect-To entry field is enabled and you can enter "
or whatever. A set of check boxes in the same form allow you to refine the behavior of the redirection.
If this does not give you what you want, you can use ASP's Response.Redirect method with something like
<% Response.Redirect =("
%>
You can also create a redirect page at the old address which uses a Meta refresh tag in the redirect page's HEAD, e.g.
<META http-equiv="Refresh" content="0;URL=http://www.newsite.com/page.html">;
Or you can use JavaScript’s location.replace method. For example, in the redirect page's HEAD, you can enter something like:
<SCRIPT language="JavaScript">
location.replace("
</SCRIPT>
location.replace is supported in version 3 of both the Netscape and Microsoft Browsers.
Hope one of these techniques works for your situation.
Good Luck
DavidK