July 2013
Intermediate to advanced
1228 pages
34h 1m
English
CHAPTER 32
![]()
Stateful Controls
One of the underlying issues in any web application framework is the need to create a consistent and persistent user experience across a set of stateless HTTP requests—something that is handled by state data. In Chapter 18, we showed you the different state features that ASP.NET provides, and in this chapter we return to that theme to explain the options available for controls. In particular, we describe the view state feature, which is one of the most widely misunderstood and misused features that ASP.NET provides.
Preparing the Example Project
For this chapter we have created a project called ControlState using ...