Instant Redirection:
Response.Redirect("http://google.com");The second parameter is EndResponse and indicates whether execution of the current page should terminate.
Response.Redirect("http://google.com", false);
Delayed Redirection:
Response.AddHeader("REFRESH", "5;URL=http://google.com");
No comments:
Post a Comment