Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Page_Init vs OnInit

Tags:

asp.net

Between handling the Page_Init event or overriding the OnInit method of a Page, which one is better to use? Thanks.

like image 889
ban-G Avatar asked Aug 10 '09 16:08

ban-G


3 Answers

I had this very question about a year ago, I settled on overridding as opposed to the On_X Events. Here is the article I read covering the pros and cons: http://weblogs.asp.net/infinitiesloop/archive/2008/03/24/onload-vs-page-load-vs-load-event.aspx

like image 120
Nick Riggs Avatar answered Oct 24 '22 19:10

Nick Riggs


Overriding the base type's method is preferable as a virtual call is simpler and cleaner than creating a delegate attaching an event to a method group.

Also, relying on AutoEventWireup being set to true means that you are introducing overhead into the parsing of your page code as ASP.NET will have to create any delegates for you at execution-time.

like image 20
Andrew Hare Avatar answered Oct 24 '22 19:10

Andrew Hare


Basically there is no difference in this two appoaches. That's what is done in OnInit in Page class:

protected internal override void OnInit(EventArgs e)
{
    base.OnInit(e);
    if (this._theme != null)
    {
        this._theme.SetStyleSheet();
    }
    if (this._styleSheet != null)
    {
        this._styleSheet.SetStyleSheet();
    }
}

If we will open base.OnInit we will se that that is the place where Page_Init is fired:

protected internal virtual void OnInit(EventArgs e)
{
    if (this.HasEvents())
    {
        EventHandler handler = this._occasionalFields.Events[EventInit] as EventHandler;
        if (handler != null)
        {
            handler(this, e);
        }
    }
}

So basically there is no difference in these two approaches. However you need to call base.OnInit in your overriden method if you will choose to use override instead of event. And another difference is that if you are using override you can run some code just after Theme is applied.

Regards.

P.S. The only thing I recommend is to use the same approach all over the application.

like image 4
Dmitry Estenkov Avatar answered Oct 24 '22 19:10

Dmitry Estenkov