Saved Bookmarks
| 1. |
In What Order Do The Events Of An Aspx Page Execute. As A Developer Is It Important To Undertsand These Events? |
|
Answer» This is the order of Page EVENTS
Out of all the Page_Load is the one where your code GETS LOADED and your magic should be written. page_init occurs only once, i.e. when the page is initially created. As a DEVELOPER you need to know these, becuase your development activity is coding for these only. This is the order of Page events Out of all the Page_Load is the one where your code gets loaded and your magic should be written. page_init occurs only once, i.e. when the page is initially created. As a developer you need to know these, becuase your development activity is coding for these only. |
|