Sample code for 30+ languages & platforms
Classic ASP Requires Chilkat v11.4.0+

Call a JavaScript Function Passing an Object Argument

See more JavaScript Examples

Demonstrates how to call a JavaScript function with an argument that is an object.

Chilkat Classic ASP Downloads

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

'  This is the JavaScript function we'll call:

'  function describeCar(car) {
'  	console.log(`This is a ${car.year} ${car.make} ${car.model}.`);
'  }

set sbScript = Server.CreateObject("Chilkat.StringBuilder")
success = sbScript.Append("function describeCar(car) { console.log(`This is a ${car.year} ${car.make} ${car.model}.`); }")

set js = Server.CreateObject("Chilkat.Js")

set result = Server.CreateObject("Chilkat.JsonObject")
result.EmitCompact = 0

'  Call Eval to add the function to the context's global object
success = js.Eval(sbScript,result)
If (success = 0) Then
    '  Examine the result for an exception.
    Response.Write "<pre>" & Server.HTMLEncode( result.Emit()) & "</pre>"

    '  Also examine the LastErrorText.
    Response.Write "<pre>" & Server.HTMLEncode( js.LastErrorText) & "</pre>"
    Response.End
End If

'  ------------------------------------------------------------------------------
'  Call the function describeCar(car)

set funcCall = Server.CreateObject("Chilkat.JsonObject")
funcCall.EmitCompact = 0

'  Create JSON specifying the function name and arguments
'  In this case, there is only 1 argument, and it is an object.

'  {
'    "name": "describeCar",
'    "args": [
'      {
'        "make": "Toyota",
'        "model": "Corolla",
'        "year": 2022
'      }
'    ]
'  }

success = funcCall.UpdateString("name","describeCar")

'  Create the JSON object that is the argument.
set arg = Server.CreateObject("Chilkat.JsonObject")
success = arg.UpdateString("make","Toyota")
success = arg.UpdateString("model","Corolla")
success = arg.UpdateInt("year",2022)

'  Create the arguments array.
set argsArray = Server.CreateObject("Chilkat.JsonArray")
success = argsArray.AddObjectCopyAt(0,arg)

'  Add the "args" array to the funcCall.
success = funcCall.AppendArrayCopy("args",argsArray)

Response.Write "<pre>" & Server.HTMLEncode( funcCall.Emit()) & "</pre>"

success = js.CallFunction(funcCall,result)
If (success = 0) Then
    '  Examine the result for an exception.
    Response.Write "<pre>" & Server.HTMLEncode( result.Emit()) & "</pre>"

    '  Also examine the LastErrorText.
    Response.Write "<pre>" & Server.HTMLEncode( js.LastErrorText) & "</pre>"
    Response.End
End If

Response.Write "<pre>" & Server.HTMLEncode( result.Emit()) & "</pre>"

'  The describeCar JavaScript function returns nothing. 
'  Therefore, the result is "undefined".

'  {
'    "type": "undefined",
'    "value": "undefined"
'  }

'  However, the function emitted text to the console.

set sbOut = Server.CreateObject("Chilkat.StringBuilder")
js.ConsoleOutputSb sbOut
Response.Write "<pre>" & Server.HTMLEncode( sbOut.GetAsString()) & "</pre>"

'  Output:
'  This is a 2022 Toyota Corolla.

'  -----------------------------------------------------------
'  Note: If the object argument is simple, this is an alternative
'  and simpler way of creating the funcCall:

funcCall.Clear 
success = funcCall.UpdateString("name","describeCar")
success = funcCall.UpdateString("args[0].make","Toyota")
success = funcCall.UpdateString("args[0].model","Corolla")
success = funcCall.UpdateInt("args[0].year",2022)
Response.Write "<pre>" & Server.HTMLEncode( funcCall.Emit()) & "</pre>"

%>
</body>
</html>