Friday, April 20, 2012

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>
                               
                              

No comments: