(Classic ASP) JSON AppendArray Example
Demonstrates the AppendArray function.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject")
set json = Server.CreateObject("Chilkat.JsonObject")
success = json.Load("{ ""name"": ""John"", ""marbles"": 100 }")
' Append an empty array named "xyz"
' jarr is a Chilkat.JsonArray
Set jarr = json.AppendArray("xyz")
Response.Write "<pre>" & Server.HTMLEncode( json.Emit()) & "</pre>"
' Expected output is: {"name":"John","marbles":100,"xyz":[]}
' Add elements to the array.
success = jarr.AddStringAt(-1,"hello")
success = jarr.AddIntAt(-1,256)
Response.Write "<pre>" & Server.HTMLEncode( json.Emit()) & "</pre>"
' Expected output is: {"name":"John","marbles":100,"xyz":["hello",256]}
%>
</body>
</html>
|