Hi guys

I fully understand what ViewState does to maintain the values1 of controls in a web form. What I would like to know is the purpose of the Session-like usage as follows -

ViewState["abc"] = "xyz";
x = ViewState["abc"];

Please tell me what is this used for.

Regards

Suhaib