how to parse xml with an attributes of type ID
guys
thanks for help. New guy on XML stuffs
how to format an xml file with an attributes of type ID.
example
<?xml version="1.0" encoding="utf-8" ?>
<Report>
<Table>
<Vendors>
<Vendor id="1|0" >Print Media</Vendor>
<Vendor id="2|0" >Internet</Vendor>
</Vendors>
<?Table>
<Results>
<Record jobID="1">
<Vendors>
<Vendor id="1|0" >3</Vendor>
<Vendor id="2|0" >4</Vendor>
</Vendors>
</Record>
</Results>
</Reports>
................
how i display the xml file is using javascript to load both the XSLT and XML into a htm file. However, no matter how i format the XSLT, it simply cannot display
kirkpng
|