ericlee
ericlee

Reputation: 2753

json Serialization in asp

I have currently a dataset in asp which contains my members details.

I am trying to serlize it so that it is similar to json_encode() in php which produces

[{"0":"1","id":"1","1":"Eric","name":"Eric","2":"1","sex":"1","3":"1992","birthyear":"1992"},{"0":"2","id":"2","1":"Tom","name":"Tom","2":"1","sex":"1","3":"1992","birthyear":"1992"}]

Any help here?

Upvotes: 2

Views: 7528

Answers (1)

Pascal MARTIN
Pascal MARTIN

Reputation: 401132

The json.org website links to two libraries, for ASP :

Upvotes: 1

Related Questions