vote up 5 vote down star

I've been able to find a zillion libraries for generating JSON in Classic ASP (VBScript) but I haven't been to find ANY for parsing.

I want something that I can pass a JSON string and get back a VBScript object of some sort (Array, Scripting.Dictionary, etc)

Can anyone recommend a library for parsing JSON in Classic ASP?

flag

Why not create a DLL using the .net libraries available? – Shoban Jun 19 at 17:58
Due to client limitations, I can't install anything on the server. I'm hoping for something that's pure Classic ASP. – Mark Biek Jun 19 at 17:59
Really, I'd be happy to find something that just did arrays (including multi-dimensional). It wouldn't have to support the complete JSON spec. – Mark Biek Jun 19 at 18:27

2 Answers

vote up 2 vote down check

Not sure about it. Have you checked ASP extreme framework which has JSON support?

link|flag
You're my hero. That works perfectly! I'm going to take a look at the framework because it seems very handy but I was able to just lift out the JSON class and start using it by itself. – Mark Biek Jun 19 at 18:33
wow.. Glad that I was able to help you ;-) – Shoban Jun 19 at 18:36
vote up 5 vote down

Keep in mind that Classic ASP includes JScript as well as VBScript. Interestingly, you can parse JSON using JScript and use the resulting objects directly in VBScript.

Therefore, it is possible to use the canonical http://www.json.org/json2.js in server-side code with zero modifications.

Of course, if your JSON includes any arrays, these will remain JScript arrays when parsing is complete. You can access the contents of the JScript array from VBScript using dot notation.

<%@Language="VBScript" %>
<%
Option Explicit
%>
<script language="JScript" runat="server">
... insert contents of http://www.json.org/json2.js here ...
</script>
<%

Dim myJSON
myJSON = Request.Form("myJSON") // "[ 1, 2, 3 ]"
Set myJSON = JSON.parse(myJSON) // [1,2,3]
Response.Write(myJSON)          // 1,2,3
Response.Write(myJSON.[0])      // 1
Response.Write(myJSON.[1])      // 2
Response.Write(myJSON.[2])      // 3
%>
link|flag

Your Answer

Get an OpenID
or

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