Programming Reference Manual
 
Syntax
 
EncodeJSON[$](Field1, Value1[,Field2, Value2][,Fieldn, Valuen])
 
Description
Return a string using the JSON encoding algorithm.
 
Parameter
Description
Fieldn, Valuen...
An array of pairs, containing fieldnames and their corresponding values..
See Also
Example
 
Sub Main
Debug.Print EncodeJSON("Message","Hello World!", "Show", "<span style='color: #800080; font-weight: bold;'>True</span>") '"{""Message"":""Hello World!"",""Show"":"True""}"
End Sub