What is AutoEventWireup attribute in ASP.NET

AutoEventWireup attribute is set to false  by default in the .aspx page and event handlers are automatically created.

When you 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.

Leave a Reply