Hi i am new at XML, and XSLT...
I have this file: below, I am only trying to get the name and artist, not the track id ...however when i try and transform it, i get all of it...I haven't been able to figure out how to get just the name and artist. xml, and xslt below.
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="test.xsl"?>
Tracks
35
Track ID35
NameLady Marmalade
ArtistMoulin Rouge
Date3/3/05
36
Track ID36
NameShook Me All Night Long
ArtistAC/DC
Date3/3/05
<?xml version="1.0"?>
any help would be appricated!!! thanks
Comments
:
: I have this file: below, I am only trying to get the name and artist, not the track id ...however when i try and transform it, i get all of it...I haven't been able to figure out how to get just the name and artist. xml, and xslt below.
:
: <?xml version="1.0" encoding="UTF-8"?>
: <?xml-stylesheet type="text/xsl" href="test.xsl"?>
:
: Tracks
:
: 35
:
: Track ID35
: NameLady Marmalade
: ArtistMoulin Rouge
: Date3/3/05
:
: 36
:
: Track ID36
: NameShook Me All Night Long
: ArtistAC/DC
: Date3/3/05
:
:
:
:
: <?xml version="1.0"?>
:
:
:
:
:
:
:
:
:
: any help would be appricated!!! thanks
:
:
Try out this code
It will fetch all the Name and Artist for you
<?xml version="1.0" encoding="UTF-8"?>
Regards
Mahen