up vote 9 down vote favorite
5
share [g+] share [fb]

I've found ScriptingJsonSerializationSection 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 <System.Web.Services.WebMethod()> and <System.Web.Script.Services.ScriptMethod()> attributes so there must be a built-in way that I'm missing.

PS: using Asp.Net 2.0 and VB.Net - I put this in the tags but I think people missed it.

link|improve this question

"using Asp.Net 2.0 and VB.Net - I put this in the tags but I think people missed it" - well, that "2.0" could be interpreted as "not 1.1" instead of "not 3.x". – bzlm Mar 2 '09 at 12:58
feedback

6 Answers

up vote 9 down vote accepted

This should do the trick

Dim jsonSerialiser As New System.Web.Script.Serialization.JavaScriptSerializer
Dim jsonString as String = jsonSerialiser.Serialize(yourObject)
link|improve this answer
Note: in .NET 3.5 JavaScriptSerializer is marked as obsolete, it says to use DataContractJsonSerializer – Glenn Slaven Sep 10 '08 at 3:06
That's right, but this is for a .Net 2.0 project – travis Sep 16 '08 at 2:29
3  
In .NET 3.5 SP1, it is unobsolete again! – bzlm Mar 2 '09 at 12:57
feedback

I think what you're looking for is this class:

System.ServiceModel.Web.DataContractJsonSerializer

Here's an example from Rick Strahl: DataContractJsonSerializer in .NET 3.5

link|improve this answer
Yes! You have no idea for how long I've been looking for this :) – Tom Dec 1 '10 at 10:47
feedback

Since the JavaScriptSerializer class is technically being deprecated, I believe DataContractJsonSerializer is the preferable way to go if you're using 3.0+.

link|improve this answer
1  
In .NET 3.5 SP1, it is unobsolete again! – bzlm Mar 2 '09 at 12:57
feedback

Well, I am currently using the following extension methods to serialize and deserialize objects:

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);
}

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).

link|improve this answer
feedback

In the System.Web.Extensions assembly, version 3.5.0.0, there's a JavaScriptSerializer class that should handle what you want.

link|improve this answer
feedback

Try

System.Web.Script.Serialization.JavaScriptSerializer

or Check out JSON.org there is a whole list of libraries written to do exactly what you want.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.