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.com2009-12-16T16:13:43Zhttp://stackoverflow.com/feeds/question/35106http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/35106/is-there-a-built-in-way-in-net-ajax-to-manually-serialize-an-object-to-a-json-st8Is there a built in way in .Net AJAX to manually serialize an object to a JSON string?travis2008-08-29T19:28:50Z2008-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><System.Web.Services.WebMethod()></code> and <code><System.Web.Script.Services.ScriptMethod()></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#351256Answer by TonyB for Is there a built in way in .Net AJAX to manually serialize an object to a JSON string?TonyB2008-08-29T19:37:28Z2008-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#351284Answer by Joseph Kingry for Is there a built in way in .Net AJAX to manually serialize an object to a JSON string?Joseph Kingry2008-08-29T19:37:45Z2008-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#351322Answer by Jarrod Dixon for Is there a built in way in .Net AJAX to manually serialize an object to a JSON string?Jarrod Dixon2008-08-29T19:38:32Z2008-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#351331Answer by Steven Williams for Is there a built in way in .Net AJAX to manually serialize an object to a JSON string?Steven Williams2008-08-29T19:39:06Z2008-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#351344Answer by Dave Ward for Is there a built in way in .Net AJAX to manually serialize an object to a JSON string?Dave Ward2008-08-29T19:40:49Z2008-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#351363Answer by Jason Bunting for Is there a built in way in .Net AJAX to manually serialize an object to a JSON string?Jason Bunting2008-08-29T19:41:07Z2008-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);
}
/// <typeparam name="T">The type we are deserializing the JSON to.</typeparam>
public static T FromJSON<T>(this string json)
{
JavaScriptSerializer jss = new JavaScriptSerializer();
return jss.Deserialize<T>(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#351480Answer by travis for Is there a built in way in .Net AJAX to manually serialize an object to a JSON string?travis2008-08-29T19:48:07Z2008-08-29T19:48:07Z<p>@<a href="#35125" rel="nofollow">TonyB</a> that worked perfectly, thanks!</p>