.NET C#, Permanent 301 Redirect, Temporary 302 Redirect. Web

    protected void permanentRedirect ()
    {
        // 302 A PERMANENT REDIRECT
        Response.RedirectPermanent("http://www.markdownie.me.uk/");
    }

    protected void temporaryRedirect()
    {
        // 301 A TEMPORARY REDIRECT
        Response.Redirect("http://www.markdownie.me.uk/");
    }
   

Comments

Popular posts from this blog

Umbraco Razor Sort Nodes Ascending or Descending

Umbraco Razor get Querystring

Create a .NET Contact Form that Gets the Last Url Visited in C# Can also be Used in Umbraco