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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

writing xpath results to a webpage

Status
Not open for further replies.

eja2000

Programmer
Nov 30, 2003
209
NG
i have an xml file;

<?xml version=&quot;1.0&quot; encoding=&quot;ISO-8859-1&quot;?>
<catalog>
<cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
<year>1985</year>
</cd>
<cd>
<title>Wet my whistle</title>
<artist>Bonnie Tyler</artist>
<country>UK</country>
<company>CBS Records</company>
<price>9.90</price>
<year>1988</year>
</cd>
</catalog>

i want to create a list of the 2 titles
i.e.

Empire Burlesque
Wet my whistle

how can i do this with xpath and vbscript?
thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top