|
What is the the Page_Load Event in ASP.Net?
|
|
The Page_Load event is one of many events that ASP.Net understands. The Page_Load event is triggered when a page loads, and ASP.Net will automatically call the subroutine Page_Load, and execute the code inside it.
|
Note: The Page_Load event contains no object references or event arguments!
|
|
|
|
|
|