.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/");
}
{
// 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
Post a Comment