Subscribe to
Posts
Comments

Archive for January, 2005

To reduce page bloat, we move view state to session state, rather than store it in hidden fields. This is done by overriding System.Web.UI.Page’s LoadPageStateFromPersistenceMedium() and SavePageStateToPersistenceMedium() methods.
[csharp]
protected override object LoadPageStateFromPersistenceMedium()
{
return Session["__ViewState"];
}
protected override void SavePageStateToPersistenceMedium(object state)
{
Session["__ViewState"] = state;
}
[/csharp]

Taken from http://scottcate.mykb.com/Article_9BB34.aspx i’ve found the following useful keyboard shortcuts:

Ctrl -
Jumps to last position (previous cursor position)

Ctrl shift -
Jumps forward position

Ctrl i
Incremental search (like Firefox)

« Prev