I am trying to diplay a topics page through my category XML package based on which category is selected.
For example
If category 5 is selected
show topics page 5
I have tried this code and I get an error
<xsl:choose>
<xsl:when test="$CurrentEntityNode">
<div>
<xsl:if test="@categoryId = '10'"><xsl:value-of select="aspdnsf:Topic('cattpage.drivertop')" disable-output-escaping="yes"/></xsl:if>
<xsl:if test="@categoryId = '11'"><xsl:value-of select="aspdnsf:Topic('cattpage.driverbottom')" disable-output-escaping="yes"/></xsl:if></div>
</xsl:when>
<xsltherwise>
<div><xsl:value-of select="aspdnsf:Topic('SearchPageHeader')" disable-output-escaping="yes" /></div>
</xsltherwise>
</xsl:choose>