Browser Redirects
Implementing browser redirects
Using meta refresh:
<meta http-equiv="refresh" content="0; url=http://jasp-costin.blogspot.com">
Using JavaScript:
<script type="text/javascript">
<!--
function NavigateAway()
{
window.location.href = "http://jasp-costin.blogspot.com";
}
//-->
</script>
<body onload="NavigateAway();">
.....
</body>
Using ASP.NET
Protected Overrides Sub OnLoad(ByVal e As System.EventArgs)
MyBase.OnLoad(e)
Response.Status = "301 Moved Permanently"
Response.AddHeader("Location", "http://jasp-costin.blogspot.com")
Response.End()
End Sub
No comments:
Post a Comment