---
title: "Which event determines that all the controls are completely loaded into memory?"  
description: "Which event determines that all the controls are completely loaded into memory?"  
author: "Sumit Kesarwani"  
published: 2014-09-01  
updated: 2020-09-22  
canonical: https://www.mindstick.com/interview/2098/which-event-determines-that-all-the-controls-are-completely-loaded-into-memory  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# Which event determines that all the controls are completely loaded into memory?

The Page_Load event determines that all the controls on the page are fully loaded. You can also access the controls in the Page_Init event; however, the ViewState property does not load completely during this event.

## Answers

### Answer by Sumit Kesarwani

The Page_Load event determines that all the controls on the page are fully loaded. You can also access the controls in the Page_Init event; however, the ViewState property does not load completely during this event.


---

Original Source: https://www.mindstick.com/interview/2098/which-event-determines-that-all-the-controls-are-completely-loaded-into-memory

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
