tags:

views:

61

answers:

2

Hello everyone,

i am working on a project in which a server page is called through XMLHttp and now i want to retrieve response the called page in json object. and i never used json so i don't have any idea about it so please tell me how i can make json object in my server side vb.net page.

A: 

It isn't too clear what you need to do, as far as I can understand you want to send to the caller JSON responses from a webserver, using VB.NET. I suggest to take a look at JSON.NET project, which makes serializing and deserializing your .NET objects to JSON a breeze!

m.bagattini
+1  A: 

You can use JSON.NET or use DataContractJsonSerializer built in .NET 3.5.

Cleiton