If in my XSL style I do:
Code:
<xsl:for-each select="Table">
   <tr align="center">
      <td class="OddColumn" align="left"><xsl:value-of select="Subject"/></td>				
      <td class="EvenColumn">
         <a href="ShowThread.aspx?ID=">
            <xsl:value-of select="ThreadStarter"/>
         </a>
      </td>
      <td class="OddColumn"><xsl:value-of select="ReplyCount"/></td>
Then, on my page where ever the value of ThreadStarter is it has a link of ShowThread.aspx?ID=.
However...I would like to get the ID in here...the tag name from the XML is ThreadID.

How can this be done?

woof