<%@ LANGUAGE="JavaScript" %> <% // 2002-09-25-21:13 Try location header in redirecting to another page. // Issue a Location header specifying the target of redirection and // then set response status to "302 Object Moved" to trigger the // redirection. Response.AddHeader("Location", "http://www.sybergsdorsett.com"); // the relative location of the target Response.Status = "302 Object Moved"; // This should be the status the client receives. // When the first content is encountered, there can no longer be // any changes to the headers and ASP will act on what it has. The // 3xx response will cause immediate response and no content will be // delivered to the client. %>