HI,
In the insertcommand, i have the following code:
I am trying to do a soft save of the grid items. When the first row is added it is set in the session. when the 2nd row is added, only the 2nd row values are available in the session.
How to add items in session?
Thanks
                                In the insertcommand, i have the following code:
GridEditableItem item = e.Item as GridEditableItem;            Hashtable values = new Hashtable();             item.ExtractValues(values);                        Session["GridValues"] = values;            RadGrid1.DataBind();I am trying to do a soft save of the grid items. When the first row is added it is set in the session. when the 2nd row is added, only the 2nd row values are available in the session.
How to add items in session?
Thanks
