Q:What is the sequence in which ASP.NET events are processed ?
A: Following is the sequence in which the events occur:
- Page_Init
- Page_Load
- Control Events
- Page_Unload
Q: In which event are the controls fully loaded?
A: Page_load event guarantees that all controls are fully loaded. Controls are also accessed in Page_Init events but you will see that viewstate is not fully loaded during this event.
Q: What are the Application_Start and Session_Start subroutines used for?
A: This is where you can set the specific variables for the Application and Session objects.
Q: Can you edit data in the Repeater control?
A: No, it just reads the information from its data source.

No comments:
Post a Comment