Hey, bomy ! Welcome to the forums!
well, this is your code:
Code:
Protected Overrides Sub OnLoad(ByVal e As System.EventArgs)
MyBase.OnLoad(e)
Response.Status = "301 Moved Permanently"
Response.AddHeader("Location", "http://where-to-redirect")
Response.End()
End Sub
"
http://where-to-redirect = add the url where you want uer to be redirected
hope this helps you.
