RE: [xsl] Date Comparison using ">=" and "<=" doesn't work - WHY!?!?

Subject: RE: [xsl] Date Comparison using ">=" and "<=" doesn't work - WHY!?!?
From: "Gregory Pearson" <GregP@xxxxxxxxx>
Date: Mon, 11 Mar 2002 15:07:25 -0900
Hi.  Thanks for the reply.  It still doesn't work for me using the "&lt;" syntax ...

This works:  (it selects the xml data for the date 2/12/02)

     Style.XMLDocument.selectNodes("//xsl:apply-templates/@select")(1).value = "record[Date = '2/12/02']";	

This does NOT work:  (it should select xml data for any dates after 2/11/02 which should include the date 2/12/02)

     Style.XMLDocument.selectNodes("//xsl:apply-templates/@select")(1).value = "record[Date &gt; '2/11/02']";

              ERROR MESSAGE RECEIVED:
                            
                           Unexpected character in query string.

                           records[record[Date -->&<-- gt; '2/11/02']]


It doesn't seem to like the "&" in the "&gt;" syntax.  I'm running MXSML 4.0.  Any ideas would be appreciated.  Thanks again.






					

>>> CSNOW@xxxxxxxxx 03/11/02 02:45PM >>>
You have to use the escaped versions: &lt; and &gt; (well, technically, only
the "<" character must be escaped, but it's best to do both).

So the comparison should be date &gt;='2/10/02' and Date &lt;='2/15/2002'

Weird, I know. But it works. Taken from Mike Kay's book XSLT 2d Edition,
page 416.

Corey



> -----Original Message-----
> From: Gregory Pearson [mailto:GregP@xxxxxxxxx] 
> Sent: Monday, March 11, 2002 3:29 PM
> To: XSL-List@xxxxxxxxxxxxxxxxxxxxxx 
> Subject: [xsl] Date Comparison using ">=" and "<=" doesn't work -
> WHY!?!?
> 
> 
> Hi.
> 
> This works:
> 
>      
> Style.XMLDocument.selectNodes("//xsl:apply-templates/@select")
> (1).value = "record[Date = '2/12/02']";
> 
> This does NOT work:
> 
>      
> Style.XMLDocument.selectNodes("//xsl:apply-templates/@select")
> (1).value = "record[Date >= '2/10/02' and Date <= 
> '2/15/02']";					
> 
> IS IT NOT POSSIBLE TO USER ">=" AND "<=" FOR DATES?
> 
> Thanks!!
> 
> 
> 					
> 
> 
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list 
> 

#########################################################
The information contained in this e-mail and subsequent attachments may be privileged, 
confidential and protected from disclosure.  This transmission is intended for the sole 
use of the individual and entity to whom it is addressed.  If you are not the intended 
recipient, any dissemination, distribution or copying is strictly prohibited.  If you 
think that you have received this message in error, please e-mail the sender at the above 
e-mail address.
#########################################################

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list 



 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread