Subject: how to conditionally insert begnining and ending tags SEPERATELY in xsl style sheet?
From: Harry Liu <hliu@xxxxxxxxxxxxx>
Date: Mon, 8 Jan 2001 11:49:52 -0600
|
I want to do something in an xsl style sheet like the code shown below:
(conditionally add a new row to a table). But directly writing the <tr> or
</tr> seperately shown in the floowing code is not accepted.
Could anybody help me out?
Harry
<xsl:if test="variable='A'">
<tr>
</xsl:if>
<td>
(any code)
</td>
...............
<xsl:if test="variable='A'">
</tr>
</xsl:if>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|