I am using ASP.NET 3.5 and i used earlier 1.1 i am having difficulty to find where can i attach/declare the page init event ?
In 1.1 there was auto generated code which used to have initialization code. Where we can add the page init method. So i am confused please help.
ASP.NET 2.0 changed the default designing/compilation model.
By default AutoEventWireup is set to true, which instructs compiler to automatically attach event handlers from the code behind using naming convention, so when you write:
protected void Page_Load(...)
{
}
it automatically puts this code in behind the scenes:
this.Load += new EventHandler(this.Page_Load)
This was previously done by InitialiseComponent() (i believe).
Nonetheless, the answer is to write the code yourself:
protected void Page_Init(object sender, EventArgs e)
{
// do the bartman
}
Just declare this in your code behind:
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
}
You don't have to bind the event. Just create an event handler for it, and it will be bound automaticlaly:
protected void Page_Init(object sender, EventArgs e) {
...
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With