xmlXMLFromDict (client-side)
Use this routine to convert a Dictionary object into an XML document.
Definition
xmlXMLFromDict(byRef dDict)
Parameters
dDict
A Dictionary object to be converted to XML.
Return Value
An XML DOMDocument object containing an item element for each entry in the Dictionary object.
Remarks
Each item element is given two attributes, name and value, initialized to the name and value of each entry in the Dictionary object, as follows:
<item name="keyname" value="value"/>
This routine is available in the include file HTTPXMLUtil.htm.
There is a functionally equivalent version of this routine defined for server-side use in the file HTTPXMLUtil.asp.