How to JSON Serialization and Deserialization in ASP.NET

JSON is one kind of data format which is designer for running JavaScript on website. At present, JSON is widely used in web. This article focuses on JSON Serialization and Deserialization in ASP.NET, including the brief introduction of JSON, how to serialize and deserialize with ASP.NET and operation on date, assembly, dictionary. 1. JSON Brief Introduction JSON (JavaScript Object Notation) is one ligthweight data exchange format. JSON is “name/value” assembly. Its structure is made up with {}, [], comma, colon and double quotation marks. And it includes the following data types: Object, Number, Boolean, String, Array, NULL. JSON has three … Click here to continue reading.