Tagged Questions
The page-state tag has no wiki summary.
4
votes
2answers
232 views
How to extend a serializable class so it can still be serialized?
I have a class like this that I want to save in ViewState for an asp.net UserControl. It basically extends a generic list with a few methods but also adds some properties, e.g.
public class ...
0
votes
2answers
19 views
what is a page state? and what and where is outputcache directive trying to save?
I observed that there is savepagestatetopersistencemedium method, and we can override and implement them to save them to cache or session or whatever, so what is a page state?
And I have no idea what ...
0
votes
1answer
192 views
ASP.NET: How to persist Page State accross Pages?
I need a way to save and load the Page State in a persistent manner (Session). The Project i need this for is an Intranet Web Application which has several Configuration Pages and some of them need a ...
0
votes
1answer
260 views
Page State in Windows Phone 7 applications - do I need to save it?
In the following blog post the author describes the need to store page state, e.g. the text within a TextBox control, in the Page State dictionary so that it is restored when navigating between pages:
...