Firecat1970
IS-IT--Management
Hi, anyone has tried passing an XML to the final script of a PowerPrompt application?
I have stored a string of XML to a variable in a previous HTML, and in the Script of PowerPrompt, I want to read the cell of the XML, so I tried something like :-
var xml_tmp;
xml_temp = server.createobject("Microsoft.XMLDOM"
xml_temp.loadXML(App.Variables("t_xml_string"
var i;
i = xml_temp.getElementsByTagName("column".item(0).text;
Is something like this possible? or actually I am completely wrong in attempting this?
I have stored a string of XML to a variable in a previous HTML, and in the Script of PowerPrompt, I want to read the cell of the XML, so I tried something like :-
var xml_tmp;
xml_temp = server.createobject("Microsoft.XMLDOM"
xml_temp.loadXML(App.Variables("t_xml_string"
var i;
i = xml_temp.getElementsByTagName("column".item(0).text;
Is something like this possible? or actually I am completely wrong in attempting this?