If you want to redirect a page permanently to the new location, ASP.Net 4.0 introduces a new method ie, HttpResponse.RedirectPermanent
example:
Response.RedirectPermanent(“http://www.menonon.net/MyNewPage.aspx”);
Advertisement
If you want to redirect a page permanently to the new location, ASP.Net 4.0 introduces a new method ie, HttpResponse.RedirectPermanent
example:
Response.RedirectPermanent(“http://www.menonon.net/MyNewPage.aspx”);
SocialVibe