| |
GeekInterview.com > Interview Questions > Microsoft > Architecture
| Print | |
Question: What is AutoEventFireup ?
|
| March 03, 2007 05:01:05 |
#1 |
| |
Member Since: Visitor Total Comments: N/A |
RE: What is Auto Event Fire up ? |
| AutoEventWireup is an attribute in Page directive. It's a Boolean attribute which indicates whether the asp.net pages events are auto-wired.When we set the value of the AutoEventWireup attribute to true, the ASP.NET runtime does not require events to specify event handlers like Page_Load or Page_Init.If we set the value of this attribute to true, framework must make a call to reateDelegate method for every Web Form (.aspx page). So it will be a performance issue and should not set the value to true if performance is a key issue. |
| |
Back To Question | |