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

Redirect307() public static method

Commonly used 307 redirect ("Temporary Redirect"). Redirects the user, but the browser is instructed that it *should* not cache this response (not guaranteed). Usage: H3Http.Redirect307(this, "http://fynydd.com");
public static Redirect307 ( 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 Redirect307(Page pageToRedirect, String redirectLocation)
        {
            Redirect(pageToRedirect, redirectLocation, 307);
        }