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 install ASP.NET
How to connect to MySQL database using ASP.NET hosting
How to write encoded text on the web page in ASP.NET
How to get current page URL in …

Learn more