I have a:
<xsl:param name="SomeFlag" />
In my XSLT template, I want to do a conditional check on SomeFlag. Currently I'm doing it as:
<xsl:if test="$SomeFlag = true"> SomeFlag is true! </xsl:if>
Is this how we evaluate the the flag?
I'm setting the param in C# as:
xslarg.AddParam("SomeFlag", String.Empty, true);
Any ideas?