Argentini.Halide.H3Http.Redirect303 C# (CSharp) Method

Redirect303() public static method

Commonly used 303 redirect ("See Other"). Redirects the user, but the browser is instructed not to cache this response. Similar to 307, but more SEO friendly. Usage: H3Http.Redirect303(this, "http://fynydd.com");
public static Redirect303 ( Page pageToRedirect, String redirectLocation ) : void
pageToRedirect System.Web.UI.Page The Page object which is to be redirected
redirectLocation String The url to which the page will be redirected
return void
        public static void Redirect303(Page pageToRedirect, String redirectLocation)
        {
            Redirect(pageToRedirect, redirectLocation, 303);
        }