301 redirect

How to make 301 redirect in ASP.NET 4.0

ASP.NET 4 adds a new RedirectPermanent helper method that makes it easy to make HTTP 301 Moved Permanently responses:

RedirectPermanent(“/newfile.aspx”);

Related TutorialsHow to learn ASP.NET
How to disable a button after click in ASP.NET
How to create new aspx web page
ASP.NET User Controls
How to …

Learn more