USING JSON SERIALIZATION FOR CODE BEHIND-JAVASCRIPT DATA COMMUNICATION
Posted
on C# Corner
See other posts from C# Corner
Published on Apr 14, 2010
Indexed on
2010/04/14
21:54 UTC
Read the original article
Hit count: 170
Filed under:
Many of us went through a scenario like, can us pass a full of C# type/class to the javascript?
Modify from there and again return back to C#? The difficulty is that JavaScript only knows string format comared to C# which has many data types. So how we can pass an entires class to JavaScript? Here we need to handle with JSON serialization techniques.
© C# Corner or respective owner