I am new to programming and new to XML, I know that does not help.....
I need to read an external XML file that looks like this
<?xml version="1.0" encoding="UTF-8"?>
<gesmes:Envelope xmlns:gesmes="http://www.gesmes.org/xml/2002-08-01" xmlns="http://www.ecb.int /vocabulary/2002-08-01/eurofxref">
<gesmes:subject>Reference rates</gesmes:subject>
<gesmes:Sender>
<gesmes:name>European Central Bank</gesmes:name>
</gesmes:Sender>
<Cube>
<Cube time='2014-06-17'>
<Cube currency='USD' rate='1.3568'/>
<Cube currency='JPY' rate='138.40'/>
<Cube currency='BGN' rate='1.9558'/>
<Cube currency='CZK' rate='27.445'/>
In the ASP page, I would like to read and display two currencies and their values, but I have not found any example that looks like this..
thanks in advance, Jeroen