Permanent Redirect

Instead of doing a Response.Redirect to point to a page in a new location (I.e. the page has been renamed), do a permanent redirect. Using this code tells the search engines to no longer index the old page but to index the new page.

   Response.Status = “301 Moved Permanently”
   Response.AddHeader “Location”, “new-page-name.asp”