Gets the System.Web.UI.PageStatePersister object associated with the page.
Documentation for this section has not yet been entered.
HTTP requests and responses are inherently stateless. To maintain state between HTTP requests, ASP.NET server pages can store System.Web.UI.Page state. This state, called view state, consists of page and control settings and data that make the page and controls appear as if they are the same ones that the user saw and interacted with on their last round trip to the page. Several mechanisms exist to store view state between successive requests to the same page. The abstract System.Web.UI.PageStatePersister class represents the base class for these state storage mechanisms.
Page developers will typically not need to use the Page.PageStatePersister property. The Page.PageStatePersister property is used primarily by control developers extending the functionality of the System.Web.UI.Page class.