Thanks for your response steve.
I can confirm that I have all the right document tags.. i left them out for brevity. I have stripped the / character from my value-of selects, however I still don't get the information that I should get.
The rest of the document works perfectly. It's only the loop that isn't displaying the info.
Any more ideas??
Main Topics
Browse All Topics





by: stevehardonPosted on 2009-07-23 at 12:21:25ID: 24929052
You might have left it out for clarity, but to be clear your xml data document should start with:
rg/1999/XS L/Transfor m" version="1.0">
<?xml version="1.0" encoding="UTF-8"?>
Your style sheet should start with:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.o
<xsl:template match="/">
and end with:
</xsl:template>
</xsl:stylesheet>
Then simply remove the starting "/" character in you value-of select statement like this:
<xsl:value-of select="where" />
and
<xsl:value-of select="when" />