Subject: Re: using default params?
From: Paul Tchistopolskii <paul@xxxxxxx>
Date: Tue, 28 Mar 2000 23:52:53 -0800
|
> <table bgcolor="#ff0000">
> <xsl:attribute name="bgcolor">
> <xsl:if test="@col1"><xsl:value-of select="@col1"/></xsl:if>
> </xsl:attribute>
> <tr><td><xsl:apply-templates/></td></tr>
> <table>
Sorry... that's a flu, I think ...
<table bgcolor="#ff0000">
<xsl:if test="@col1">
<xsl:attribute name="bgcolor"><xsl:value-of select="@col1"/></xsl:attribute>
</xsl:if>
<tr><td><xsl:apply-templates/></td></tr>
<table>
Rgds.Paul.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|