|
Page_Load will be executed every time the page is submitted or refreshed, that is, it will be executed when you display the page load, if you have a button on the page, after clicking, Page_Load will be executed first, and then the button Events, as for how you want to execute the code in Page_Load, use the IsPostBack property to control. |
|