Sample code for 30+ languages & platforms
Classic ASP

Example: JsonObject.NewObjectOf method

Demonstrates the NewObjectOf method.

Chilkat Classic ASP Downloads

Classic ASP
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
success = 0

car = "{""make"":""Toyota"",""model"":""Camry"",""year"":2022,""color"":""silver"",""engine"":{""type"":""inline-4"",""fuel"":""gasoline"",""horsepower"":203},""features"":[""bluetooth"",""backup camera"",""adaptive cruise control"",""lane assist""],""isElectric"":false}"

set json = Server.CreateObject("Chilkat.JsonObject")

success = json.UpdateString("test","abc")

success = json.NewObjectOf("car",car)
If (success = 0) Then
    Response.Write "<pre>" & Server.HTMLEncode( json.LastErrorText) & "</pre>"
    Response.End
End If

json.EmitCompact = 0
Response.Write "<pre>" & Server.HTMLEncode( json.Emit()) & "</pre>"

' Result:

' {
'   "test": "abc",
'   "car": {
'     "make": "Toyota",
'     "model": "Camry",
'     "year": 2022,
'     "color": "silver",
'     "engine": {
'       "type": "inline-4",
'       "fuel": "gasoline",
'       "horsepower": 203
'     },
'     "features": [
'       "bluetooth",
'       "backup camera",
'       "adaptive cruise control",
'       "lane assist"
'     ],
'     "isElectric": false
'   }
' }

%>
</body>
</html>