---
title: "What does the EnableViewState property signify?"  
description: "What does the EnableViewState property signify?"  
author: "Varun Agrawal"  
published: 2011-03-29  
updated: 2020-09-20  
canonical: https://www.mindstick.com/interview/734/what-does-the-enableviewstate-property-signify  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# What does the EnableViewState property signify?

EnableViewState saves the state of an object in a page between postbacks. Objects are saved in a Base64 encoded string. If you do not need to store the page, turn it off as it adds to the page size.

## Answers

### Answer by Varun Agrawal

EnableViewState saves the state of an object in a page between postbacks. Objects are saved in a Base64 encoded string. If you do not need to store the page, turn it off as it adds to the page size.


---

Original Source: https://www.mindstick.com/interview/734/what-does-the-enableviewstate-property-signify

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
