s0SelectedSite
is an attribute of a class or a column of a table.
<xsl:if test="string-length(@s0SelectedSite) > '0'">
<tr>
<td width="50%" bgcolor="#C0C0C0"><font size="2"><b>Selected Site:</b></font></td>
<td><font size="2"> <xsl:apply-templates select="DBE:Attribute [@name='s0SelectedSite']"/></font></td>
</tr>
</xsl:if>
In the above, the value of s0SelectedSite
exists but still the lines are not getting printed.
For eg. It should display the following:-
Selected Site: Singapore
Please let me know if something is wrong.