Start 301 Redirect Using ASP .NET
Just add the code to the page or script
ASP:
- <script runat=”server”>
- private void Page_Load(object sender, System.EventArgs e)
- {
- Response.Status = “301 Moved Permanently”;
- Response.AddHeader(“Location”,”http://www.blazedream.com/”);
- }
- </script>

+ There are no comments
Add yours