Sorry but I didn't understand exacly what you want.
I guess that you might want something like this:
<xsl:if test="@task or @args">
<xsl:attribute name="href">?<xsl:value-of select="@task"/><xsl:if
test="@task and @args">&</xsl:if><xsl:value-of select="@args"/>
</xsl:attribute>
</xsl:if>
-----Original Message-----
From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx]On Behalf Of Michael
Sent: Friday, July 12, 2002 9:28 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: RE: default attribute values?
> you could use xsl:if's
> <input type='text' name='n' value='x'>
> <xsl:if test="@size"><xsl:attribute name="size"><xsl:value-of
> select="@size"/></xsl:attribute></xsl:if>
> <xsl:if test="@maxlength"><xsl:attribute name="maxlength"><xsl:value-of
> select="@maxlength"/></xsl:attribute></xsl:if>
> </input>
Great! Combined with the copy-of suggestion this cleans up my output a
lot. One last tricky spot I haven't worked out yet though. How would I
change this as to use your check? Can I edit the value-of somehow?
<a href="?task={@task}&{@args}"/>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|