Page load event.
In ASP.NET, the controls are fully loaded during the Page_Load event. The Page_Load event is part of the page life cycle and occurs after all controls on the page have been initialized and their properties set. It is typically where you would perform initialization tasks, such as setting default values, binding data to controls, or handling other setup operations before the page is rendered to the user’s browser.