Hi,
I am able to use grid.serialize() method. However I am not able to see/handle the data in code behind file. Do you have an example of how to handle the serialzed data in asp.net file?
Thanks
Hi,
I am able to use grid.serialize() method. However I am not able to see/handle the data in code behind file. Do you have an example of how to handle the serialzed data in asp.net file?
Thanks
Hi,
have you tried postback serialized data to the code behind?
Btw, I think if you post grid’s xml to server, it will trigger asp.net security exception “A potentially dangerous Request.Form value was detected…”, which triggers when asp.net sees xml string in request values.
To prevent this, you’ll need to send encoded version of xml and retrieve it on server using HttpUtility.UrlDecode.