Creating a html in an xsl document
I have an XML document that I am transforming to HTML using an XSL sheet. At a certain point in the HTML I want to create links based on some of the information in the XML document.
This is what I have as a link:
<tr><td><a href="<xsl:value-of select="$mainLink" />">Sample Source </a></td></tr>
I know this is wrong because of the < > symbols in the href tag. Can someone provide some insight on how to have this statement work.
Thanks...Allen
|