Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #107.58K
~10K People Reached
About Me

Programmer

Favorite Forums
Favorite Tags
xml x 1

1 Posted Topic

Member Avatar for rat1973

Try this in **.xsl** file <?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/> <xsl:template match="/"> <root> <xsl:for-each select="catalog/cd"> <singer><xsl:value-of select = "artist" /></singer> </xsl:for-each> </root> </xsl:template> </xsl:stylesheet>

Member Avatar for Krishna_30
0
10K

The End.