imagine the following XML
CODE
<student name=chris>
<link>http://.chris.com</link>
<student>
i need to use XSL to translate that to a html hyperlink in the form of
CODE
<a hreh="http://chris.com">chris</a>
at first i tried
CODE
<a href="
<xsl:value-of select="student/link"/>
">
<xsl:value-of select="student/@name"/>
</a>
but that generates a nasty error, obviously because i have embedded tags.
how am i meant to solve this problem ????
i have tried storeing "chris.com" in a xsl variable, but then all i get is a hyperlink to a variable name.
google is clueless, does anyone here have any idea's ??

