Snitz™ Forums 2000
https://forum.snitz.com/forumTopic/Posts/67080?pagenum=1
05 November 2025, 06:45
Topic
kolucoms6
XML and HTML : Edited
17 May 2008, 05:03
Below set of Code returns me the XML file as Output.
Set myXmlDoc =Server.CreateObject("MSXML.DOMDocument") myXmlDoc.load("www.abcsite.com/insert.asp")
1) How to show the Output(xml) in IE ?
2) How to convert XML into HTML and displays the HTML file ?<
Replies ...
HuwR
18 May 2008, 04:27
myXmlDoc.documentElement.selectSingleNode("LeadID") should be myXmlDoc.selectSingleNode("LeadID")<