Let's say I have the string of "2004,2005,2006,2007,2008,2009" that is assigned to the parameter of "show".
Now, this does work:
<xsl:if test="$show='2004'">
//stuff
</xsl:if>
This doesn't work:
<xsl:if test="$show='2005'">
//stuff
</xsl:if>
I'm not sure how to test for part of a string like that. Any idea?