Skip to content Skip to sidebar Skip to footer

Converting From Json To Classic Asp

I have a prototype system that is working in js I call an test api using var promise = $.ajax({ url: 'myjson.json', method: 'post', data:data, dataType: 'json' });

Solution 1:

Classic ASP doesn't have anything built-in to support returning JSON Serialized data. You'll have to rely on a third party solution for that. A quick Google search shows the following as an option:

Classic ASP JSON Class


Post a Comment for "Converting From Json To Classic Asp"