<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><xsl:template match="/">
  <html>
  <body>
    <h2>Sort Test using web links</h2>
    <table border="1">
      <tr bgcolor="#9acd32">
        <th>Content</th>
        <th>Link</th>
      </tr>
      <xsl:for-each select="webxml/middle/text-link">
      <xsl:sort select="text"/>
      <tr>
      
        <td><xsl:value-of select="url"/></td>
        
        
        
        <td>
        
        
     <a>
       <xsl:attribute name="HREF">
          <xsl:value-of select="url"/>
       </xsl:attribute>
       <xsl:value-of select="text"/>
     </a>
      
        
        
        </td>
      </tr>
      </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template></xsl:stylesheet>