What's the best way to parse JSON data into a .NET object? I am trying to assist a coder friend of mine and he is trying to dump some data from a JSON string into a database using ASP.net. Are there any prebuilt scripts that would make this happen?

Thanks in advance to any help.

link|improve this question
feedback

3 Answers

Actually you should really look at the DataContractJsonSerializer as the JavaScriptSerializer was listed as Obsolete in the .NET 3.5 framework.

Admittedly ScottGu stated that it may have been a mistake and it may be reinstated in the future.

link|improve this answer
7  
FYI, JavaScriptSerializer was undepricated in .NET 3.5 SP1. danrigsby.com/blog/index.php/2008/05/28/… – chrish May 20 '11 at 11:21
feedback

The .NET Framework 3.5 has the JavaScriptSerializer class that can ease the deserialization. You can also use third party libraries like JSON.NET.

link|improve this answer
feedback

It should be noted that there is no such thing as an ASP.NET object (they are all CLR objects). Also, if you are using .NET 3.5, you probably don't need a third party library. The JavaScriptSerializer class can be used (just repeating what was mentioned before) but you also have access to the DataContractJsonSerializer, which offers a different model for mapping between CLR objects and JSON.

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.