TheVillageIdiot27
Programmer
I am having a problem with a part of of an XSLT. I have an XML file, part of which looks like:
In the corresponding part of the XSLT I need to filter out the older values (say before 2006-08-01) but I can't seem to get the test to work.
If anyone could help out I would appreciate it loads.
Thanks in advance
Code:
<tr tr_trdate="2005-09-12T00:00:00"/>
<tr tr_trdate="2006-11-28T00:00:00"/>
<tr tr_trdate="2007-01-01T00:00:00"/>
In the corresponding part of the XSLT I need to filter out the older values (say before 2006-08-01) but I can't seem to get the test to work.
Code:
<xsl:for-each select="tr">
<xsl:if test="?">
<li><xsl:value-of select="@tr_trdate"/></li>
</xsl:if>
</xsl:for-each>
If anyone could help out I would appreciate it loads.
Thanks in advance