Thanks for getting back Michael. I really appreciate it.
I was just wondering about the positioning of the code. is this right:
Code:
<?xml version="1.0" encoding="windows-1252" standalone="yes" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" indent="yes" omit-xml-declaration="no"/>
<xsl:apply-templates select="story[position() < 6]"/>
<xsl:template match="InfoStreamResults">
<xsl:apply-templates select="Article"/>
</xsl:template>
<xsl:template match="Article">
<A><xsl:attribute name="HREF">ItemPage.asp?ItemID=<xsl:value-of select="@ID"/></xsl:attribute>
<B><xsl:value-of select="Heading"/></B></A>
<br/>
</xsl:template>
</xsl:stylesheet>
Do I have to change the Story to a relevant tag? And does the 6 stand for the abount of headlines?
Thanks again
John