Brew.Webforms.EventHookModule.context_PreRequestHandlerExecute C# (CSharp) Method

context_PreRequestHandlerExecute() public method

public context_PreRequestHandlerExecute ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        void context_PreRequestHandlerExecute(object sender, EventArgs e)
        {
            Page page = HttpContext.Current.CurrentHandler as Page;
            if (page != null) {
                page.PreInit += new EventHandler(page_PreInit);
            }
        }