In an ASP.NET application, when a page is loaded from the server's memory, which method is triggered at that moment?
Explanation
The Load() method is invoked when a page is loaded into server memory. The Unload() method occurs later during the page lifecycle, and PreRender() happens just before rendering the page.