Browse by Tags

JSON Serialization in AJAX.net both Client side and Server side
Tuesday, April 14, 2009 6:34 AM
JSON objects representations are small and lightweight compared to XML they are now the core of AJAX.net services serialization. in AJAX.net they work out of the box you can serilaize/deserialize  your objects to JSON using this snippet of server side code using System.Web.Script.Serialization; JavaScriptSerializer jss = new JavaScriptSerializer(); //Serialize... Read More...