Thanks. I will test and get back .. also can you tell me how do we select the value if the above is the condition
Can you check if i am right
<xsl:choose>
<xsl:when test="p:PRACTICE_CODE = ''">
<xsl:value-of select="concat(string(p:PA
</xsl:when>
<xsl:when test="p:FIRSTNAME = ''">
<xsl:value-of select="concat(string(p:PA
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="concat(string(p:PA
</xsl:otherwise>
</xsl:choose>
Main Topics
Browse All Topics





by: GertonePosted on 2008-01-08 at 13:27:21ID: 20613004
<xsl:when test="t:PRACTICE_CODE = ' '">
ACTICE_COD E) = '' ">
you need to remove the space between teh ' and the second quote
empty strings means there isn't any whitespace either
if empty for you means it can contain whitespace,
use this
<xsl:when test="normalize-space(t:PR
Geert