Hallo,
Ich möchte ein Bild mit einem Alt-Tag in der Form:
<img src="xy.gif" alt=""Text"">
versehen. Das könnte in XSL z.B. so aussehen:
<img src="xy.gif">
<xsl:attribute name="alt">
<xsl:value-of disable-output-escaping="yes" select="AltText"/>
<xsl:value-of select="concat('"',AltText,'"')"/>
sollte helfen.
MfG, Thomas