.NET FAQs Unleashed!
 
    
    

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?

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.



More Interview Questions...