Hi,
Does anyone know if the following code executes as a meta-refresh on the client side, or actually originates on the server?
Thanks.
Does anyone know if the following code executes as a meta-refresh on the client side, or actually originates on the server?
Code:
<script runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location","[URL unfurl="true"]http://www.new-url.com");[/URL]
}
</script>
Thanks.