I have an xml file:
<datatable>
<jmmain_jcourt>
<book_id>199900056</book_id>
<courtdate>09/18/2000</courtdate>
<courttype>S </courttype>
<sysdate>12/16/2003</sysdate>
</jmmain_jcourt>
</datatable>
I want to do a comparison between courtdate and sysdate such as:
<xsl:if test="courtdate>=sysdate">
Any ideas? It is not working this way.
Tom
<datatable>
<jmmain_jcourt>
<book_id>199900056</book_id>
<courtdate>09/18/2000</courtdate>
<courttype>S </courttype>
<sysdate>12/16/2003</sysdate>
</jmmain_jcourt>
</datatable>
I want to do a comparison between courtdate and sysdate such as:
<xsl:if test="courtdate>=sysdate">
Any ideas? It is not working this way.
Tom