Learn XML, XSLT, XPath with Tutorials & Samples


xsl:attribute-set
XML XSL

<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="myFile.xslt"?>

<store>

  <book id="1">
    <title>XML</title>
    <author>Bill</author>
    <price>25.50</price>
  </book>

  <book id="2">
    <title>XSL</title>
    <author>Vijay</author>
    <price>75.60</price>
  </book>

  <book id="3">
    <title>HTML</title>
    <author>Kris</author>
    <price>50.40</price>
  </book>

</store>

<?xml version='1.0'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="html"/>

  <xsl:attribute-set name="attSet">
    <xsl:attribute name="border">
      <xsl:text>1</xsl:text>
    </xsl:attribute>
    <xsl:attribute name="width">
      <xsl:text>25%</xsl:text>
    </xsl:attribute>
    <xsl:attribute name="bgcolor">
      <xsl:text>silver</xsl:text>
    </xsl:attribute>
  </xsl:attribute-set>

  <xsl:template match="/">
    <html>
      <head>
        <table  xsl:use-attribute-sets="attSet">
          <xsl:for-each select ="//book">
            <tr>
              <td><xsl:value-of select="title" /></td>
              <td><xsl:value-of select="price" /></td>
            </tr>
          </xsl:for-each>
        </table>
      </head>
    </html>
  </xsl:template>

</xsl:stylesheet>


OutPut:

XML 25.50
XSL 75.60
HTML 50.40
Table properties are

<table border="1" width="25%" bgcolor="silver">