Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
USING JSON SERIALIZATION FOR CODE BEHIND-JAVASCRIPT DATA COMMUNICATION
WhatsApp
Jaish Mathews
14y
17.8
k
0
0
25
Blog
You need to add Ref to System.Web.Extensions.dll and also needed to add namespace
System.Web.Script.Serialization;
The code is simple as you only need to use a class named "JavaScriptSerializer". JSON converison of a simle class
Emloyee described below
//Class to be serialized in JASON
public class Employee
{
public string ID
{
get;
set;
}
public string Name
{
get;
set;
}
}
//Code to perform above class to be serialized
StringBuilder jasonSerialize = new StringBuilder();
Employee emps = new Employee();
emps.ID = "1";
emps.Name = "Jaish";
JavaScriptSerializer ser = new JavaScriptSerializer();
ser.Serialize(emps, jasonSerialize);
The serialized information available in a stringbuilder varaible, jasonSerialize. This string format can be identified in JavaScript. From JavaScript if you need to load the real class from serialized format use the "eval()". It will be stored in a var. One dependency here is that after modification from JavaScript, you again need to serialize it, at this time from JavaScript. So you need to download a JS file named jason.js from "
http://devpro.it/JSON/files/JSON-js.html
". It has useful functions like "encode","decode" and many and you may again serialize the information and pass it to C# code side. From C# side use below code to deserialize the Employee object, which has modified from JavaScript.
Employee empd = ser.Deserialize<Employee>(jasonSerialize.ToString());
Now your "emd" contains the latest Employee object which is deserialized using JavaScriptSerializer class.
Up Next
Field or property level serialization options in mongo db using c#.net
Ebook Download
View all
Printing in C# Made Easy
Read by 22.5k people
Download Now!
Learn
View all
Membership not found