Argentini.Halide.H3Http.Redirect303 C# (CSharp) 메소드

Redirect303() 공개 정적인 메소드

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
리턴 void
        public static void Redirect303(Page pageToRedirect, String redirectLocation)
        {
            Redirect(pageToRedirect, redirectLocation, 303);
        }