Is event in web form are processed before the page-load?
-
Yes
-
No
-
Both
-
None of these
B
Correct answer
Explanation
In web forms, the Page Load event fires before control events like button clicks or selection changes. The page lifecycle processes Page Load first (where initial data binding and setup occur), then processes postback events triggered by user interactions. This sequence is important because event handlers often rely on data or state set during Page Load.