Hi I am writing a XSL page.
I don't know how to handle <a href> tag
I want to tag <xsl:value-of select='AffiliatedFacilityID'/> in the <a href="">.
Another question.
How can I check if <xsl:value-of select='AffiliatedFacilityID'/> is equal to zero or not?
This is how I write..
<table><tr>
<td align="left"><b>Website: </b></td>
<td>
<xsl:value-of select="Website"/>
</td>
</tr></table>
I want to check if <xsl:value-of select="Website"/> is empty and if it is empty, I don't want to print out <b>Website: </b>
How would you code this kind of siutation?
your input is greatly appreciated.
Thanks millions in advance.
I don't know how to handle <a href> tag
I want to tag <xsl:value-of select='AffiliatedFacilityID'/> in the <a href="">.
Another question.
How can I check if <xsl:value-of select='AffiliatedFacilityID'/> is equal to zero or not?
This is how I write..
<table><tr>
<td align="left"><b>Website: </b></td>
<td>
<xsl:value-of select="Website"/>
</td>
</tr></table>
I want to check if <xsl:value-of select="Website"/> is empty and if it is empty, I don't want to print out <b>Website: </b>
How would you code this kind of siutation?
your input is greatly appreciated.
Thanks millions in advance.