I've done a little xml and xsl but am a relative newbie.
I have been unable to find a stylesheet to process an xml file and output the tagNames and tagValues in HTML.
I can get the node names with name() and the value with xsl:value-of ... but I would like to get the lowest level tagNames via the xsl. I'd like to be able to build html for a number of different xml files.
I'm trying to get something like:
Flights
Flight 1
Flight_Number: BA123
Origin : GLA
Destination : LHR
Carrier : British Airways
Date : 01/01/2002
.....
other flights
from xml as follows:
<Flights>
<Flight>
<Flight_Number>BA123</Flight_Number>
<Origin>GLA</Origin>
<Destination>LHR</Destination>
<Carrier>British Airways</Carrier>
<Date>01/01/2002</Date>
</Flight>
<Flight>
<Flight_Number>BA4234</Flight_Number>
<Origin>GLA</Origin>
<Destination>YOW</Destination>
<Carrier>British Airways</Carrier>
<Date>01/01/2002</Date>
</Flight>
</Flights>
TIA
jack
I have been unable to find a stylesheet to process an xml file and output the tagNames and tagValues in HTML.
I can get the node names with name() and the value with xsl:value-of ... but I would like to get the lowest level tagNames via the xsl. I'd like to be able to build html for a number of different xml files.
I'm trying to get something like:
Flights
Flight 1
Flight_Number: BA123
Origin : GLA
Destination : LHR
Carrier : British Airways
Date : 01/01/2002
.....
other flights
from xml as follows:
<Flights>
<Flight>
<Flight_Number>BA123</Flight_Number>
<Origin>GLA</Origin>
<Destination>LHR</Destination>
<Carrier>British Airways</Carrier>
<Date>01/01/2002</Date>
</Flight>
<Flight>
<Flight_Number>BA4234</Flight_Number>
<Origin>GLA</Origin>
<Destination>YOW</Destination>
<Carrier>British Airways</Carrier>
<Date>01/01/2002</Date>
</Flight>
</Flights>
TIA
jack