|
| Total Answers and Comments: 3 |
Last Update: May 12, 2008 Asked by: jbhaskar |
|
| | |
|
Submitted by: 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.
Above answer was rated as good by the following members: Ag2703 | Go To Top
|