Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

getElementsByTagName in PowerPrompt Script?

Status
Not open for further replies.

Firecat1970

IS-IT--Management
May 25, 2003
68
HK
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?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top