aharris88
Programmer
- Dec 12, 2007
- 12
I am trying to take information from an xml document and display it in an xsl document. Everything works fine with these commands:
<xsl:for-each select="sermons/sermon">
<xsl:value-of select="date"/>
But how do a display a link in xsl if the url is stored in the xml document? I don't want to just display the url. I can do that. I want to display some text that links to that url.
<xsl:for-each select="sermons/sermon">
<xsl:value-of select="date"/>
But how do a display a link in xsl if the url is stored in the xml document? I don't want to just display the url. I can do that. I want to display some text that links to that url.