Is there a built in way in .Net AJAX to manually serialize an object to a JSON string? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T16:13:43Z http://stackoverflow.com/feeds/question/35106 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/35106/is-there-a-built-in-way-in-net-ajax-to-manually-serialize-an-object-to-a-json-st 8 Is there a built in way in .Net AJAX to manually serialize an object to a JSON string? travis 2008-08-29T19:28:50Z 2008-08-29T19:49:55Z <p>I've found <a href="http://msdn.microsoft.com/en-us/library/system.web.configuration.scriptingjsonserializationsection.scriptingjsonserializationsection.aspx" rel="nofollow"><code>ScriptingJsonSerializationSection</code></a> but I'm not sure how to use it. I could write a function to convert the object to a JSON string manually, but since .Net can do it on the fly with the <code>&lt;System.Web.Services.WebMethod()&gt;</code> and <code>&lt;System.Web.Script.Services.ScriptMethod()&gt;</code> attributes so there must be a built-in way that I'm missing. </p> <p>PS: using Asp.Net 2.0 and VB.Net - I put this in the tags but I think people missed it.</p> http://stackoverflow.com/questions/35106/is-there-a-built-in-way-in-net-ajax-to-manually-serialize-an-object-to-a-json-st/35125#35125 6 Answer by TonyB for Is there a built in way in .Net AJAX to manually serialize an object to a JSON string? TonyB 2008-08-29T19:37:28Z 2008-08-29T19:37:28Z <p>This should do the trick</p> <pre><code>Dim jsonSerialiser As New System.Web.Script.Serialization.JavaScriptSerializer Dim jsonString as String = jsonSerialiser.Serialize(yourObject) </code></pre> http://stackoverflow.com/questions/35106/is-there-a-built-in-way-in-net-ajax-to-manually-serialize-an-object-to-a-json-st/35128#35128 4 Answer by Joseph Kingry for Is there a built in way in .Net AJAX to manually serialize an object to a JSON string? Joseph Kingry 2008-08-29T19:37:45Z 2008-08-29T19:37:45Z <p>I think what you're looking for is this class:</p> <p>System.ServiceModel.Web.DataContractJsonSerializer</p> <p>Here's an example from Rick Strahl: <a href="http://www.west-wind.com/WebLog/posts/218001.aspx" rel="nofollow">DataContractJsonSerializer in .NET 3.5</a></p> http://stackoverflow.com/questions/35106/is-there-a-built-in-way-in-net-ajax-to-manually-serialize-an-object-to-a-json-st/35132#35132 2 Answer by Jarrod Dixon for Is there a built in way in .Net AJAX to manually serialize an object to a JSON string? Jarrod Dixon 2008-08-29T19:38:32Z 2008-08-29T19:38:32Z <p>In the System.Web.Extensions assembly, version 3.5.0.0, there's a <a href="http://msdn.microsoft.com/en-us/library/system.web.script.serialization.javascriptserializer.aspx" rel="nofollow">JavaScriptSerializer</a> class that should handle what you want.</p> http://stackoverflow.com/questions/35106/is-there-a-built-in-way-in-net-ajax-to-manually-serialize-an-object-to-a-json-st/35133#35133 1 Answer by Steven Williams for Is there a built in way in .Net AJAX to manually serialize an object to a JSON string? Steven Williams 2008-08-29T19:39:06Z 2008-08-29T19:39:06Z <p>Try</p> <pre><code>System.Web.Script.Serialization.JavaScriptSerializer </code></pre> <p>or Check out <a href="http://www.json.org/" rel="nofollow">JSON.org</a> there is a whole list of libraries written to do exactly what you want.</p> http://stackoverflow.com/questions/35106/is-there-a-built-in-way-in-net-ajax-to-manually-serialize-an-object-to-a-json-st/35134#35134 4 Answer by Dave Ward for Is there a built in way in .Net AJAX to manually serialize an object to a JSON string? Dave Ward 2008-08-29T19:40:49Z 2008-08-29T19:40:49Z <p>Since the JavaScriptSerializer class is technically being deprecated, I believe <a href="http://msdn.microsoft.com/en-us/library/system.runtime.serialization.json.datacontractjsonserializer.aspx" rel="nofollow">DataContractJsonSerializer</a> is the preferable way to go if you're using 3.0+.</p> http://stackoverflow.com/questions/35106/is-there-a-built-in-way-in-net-ajax-to-manually-serialize-an-object-to-a-json-st/35136#35136 3 Answer by Jason Bunting for Is there a built in way in .Net AJAX to manually serialize an object to a JSON string? Jason Bunting 2008-08-29T19:41:07Z 2008-08-29T19:41:07Z <p>Well, I am currently using the following extension methods to serialize and deserialize objects:</p> <pre><code>using System.Web.Script.Serialization; public static string ToJSON(this object objectToSerialize) { JavaScriptSerializer jss = new JavaScriptSerializer(); return jss.Serialize(objectToSerialize); } /// &lt;typeparam name="T"&gt;The type we are deserializing the JSON to.&lt;/typeparam&gt; public static T FromJSON&lt;T&gt;(this string json) { JavaScriptSerializer jss = new JavaScriptSerializer(); return jss.Deserialize&lt;T&gt;(json); } </code></pre> <p>I use this quite a bit - be forewarned, this implementation is a bit naive (i.e. there are some potential problems with it, depending on what you are serializing and how you use it on the client, particularly with DateTimes).</p> http://stackoverflow.com/questions/35106/is-there-a-built-in-way-in-net-ajax-to-manually-serialize-an-object-to-a-json-st/35148#35148 0 Answer by travis for Is there a built in way in .Net AJAX to manually serialize an object to a JSON string? travis 2008-08-29T19:48:07Z 2008-08-29T19:48:07Z <p>@<a href="#35125" rel="nofollow">TonyB</a> that worked perfectly, thanks!</p>