BlueCollar.Dashboard.Default.OnLoad C# (CSharp) Метод

OnLoad() защищенный Метод

Raises the page's Load event.
protected OnLoad ( EventArgs e ) : void
e System.EventArgs The event arguments.
Результат void
        protected override void OnLoad(EventArgs e)
        {
            string originalPath = Request.Path;
            HttpContext.Current.RewritePath(Request.ApplicationPath, false);
            IHttpHandler httpHandler = new MvcHttpHandler();
            httpHandler.ProcessRequest(HttpContext.Current);
            HttpContext.Current.RewritePath(originalPath, false);

            base.OnLoad(e);
        }
Default