Hi When I use the RadSessionPageStateCompression in the browser file I get the following
Exception type: FormatException
Exception message: The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or a non-white space character among the padding characters.
at System.Convert.FromBase64String(String s)
at System.Web.UI.ObjectStateFormatter.Deserialize(String inputString)
at Telerik.Web.UI.RadSessionPageStatePersister.Load()
at System.Web.UI.Page.LoadPageStateFromPersistenceMedium()
at System.Web.UI.Page.LoadAllState()
at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
If I use the Telerik.Web.UI.RadHiddenFieldPageStateCompression then it works fine.

| void grid_InsertCommand(object source, GridCommandEventArgs e) |
| { |
| GridEditableItem eeditedItem = e.Item as GridEditableItem; |
| Dictionary<string, Object> newnewValues = new Dictionary<string, object>(); |
| e.Item.OwnerTableView.ExtractValuesFromItem(newValues, editedItem); |
| bool success = new SRA.Utils.GenericCodeBLL(TableName, DataKeyName, EnabledKeyName).Insert(newValues); |
| if (success) |
| { |
| //Display feedback message here |
| grid.MasterTableView.Rebind(); |
| } |
| } |