vote up 4 vote down star
2

I was wondering if anyone has run any benchmark tests on the JSON() function in Asp.net MVC and how it compares to JSON.NET? Also which one outputs the best json strings?

flag

2 Answers

vote up 2 vote down check

There is a performance comparison here. ASP.NET MVC uses the JavaScriptSerializer.

Json.NET gives you more control over outputting JSON (especially around dates) and also has the option for printing indented JSON.

link|flag
vote up 1 vote down

i am using the MVC json and it is a very good choice. i used json.net in the past it was good but there is overhead because of the 3 party DLL asp.net 3 + is doing great with json.

give it a try ..

link|flag

Your Answer

Get an OpenID
or

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