XSLT adding values to HTML tags
Two techniques for adding a value to an HTML tag:
1. Shorthand: <img src="{@Image}" />
2. Longhand:
<img>
<xsl:attribute name="src">
<xsl:value-of select="@Image"/>
</xsl:attribute>
</img>
1. Shorthand: <img src="{@Image}" />
2. Longhand:
<img>
<xsl:attribute name="src">
<xsl:value-of select="@Image"/>
</xsl:attribute>
</img>
Comments