1
Reply

In ASP.NET, which attribute of the Page directive can be used to automatically invoke the page load and unload events, whenever they take place?

Vithal Wadje

Vithal Wadje

Oct 17, 2012
1.6k
0

     The AutoEventWireUp attribute can be set to ‘true' to ensure that the page load and unload events are called, whenever
    these events take place. In case you set this value to false, the code inside the Page_Load and Page_Unload event blocks won't run.


    Vithal Wadje
    October 17, 2012
    0