NickMalloy
Programmer
I have an xml file created by a database and I want to create a html link using a xsl which contains values basically from the xml document. The problem is I don't know how to format the link. Basically it would be something like this
<xsl:value-of select="vendor"/>
<a id="<xsl:value-of select="vendor"/>" href="javascript:__doPostBack('<xsl:value-of select="vendor"/>','')"><xsl:value-of select="vendor"/></a>
How would I fill out this link so I can place those values in the link itself.
<xsl:value-of select="vendor"/>
<a id="<xsl:value-of select="vendor"/>" href="javascript:__doPostBack('<xsl:value-of select="vendor"/>','')"><xsl:value-of select="vendor"/></a>
How would I fill out this link so I can place those values in the link itself.