Solution applied -->
have a table s0Test1 attached to a class s0Test. The table has 4-5 attributes. I want to display them in HTML. I used:
Expand|Select|Wrap|Line Numbers
- <xsl:template match="DBE:Object" mode="s0Test">
- <table>
- <tr>Test1</tr>
- <tr>
- <td><font size="2">*<xsl:apply-templates select="DBE:Attribute[@name='s0Test1']"/></font></td>
- </tr>
- </table>
- </xsl:template>