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

AddCrossBrowserClientRedirect() public static method

Add a cross browser compliant client side redirect (which ensures that the Referrer value will be not null on the subsequent page) with a zero second delay.
public static AddCrossBrowserClientRedirect ( Page pageToAddScriptTo, String url ) : void
pageToAddScriptTo System.Web.UI.Page The page to which the ClientScript will be Registered as a StartupScript.
url String String representation of a URL to which the page will redirect.
return void
        public static void AddCrossBrowserClientRedirect(Page pageToAddScriptTo, String url)
        {
            AddCrossBrowserClientRedirect(pageToAddScriptTo, url, 0);
        }

Same methods

H3Http::AddCrossBrowserClientRedirect ( Page pageToAddScriptTo, String url, Int32 seconds ) : void