For an exampple i want to test if the time (customized variable here) is between 1345:59 - 1400:00 Hrs I am not sure if this is the right way of doing this.
Is there a way i can apply a range for the test condition. Like its true if the current time is between this range otherwise not.
Please let me know if there is any functionality in XSLT 1.0
<xsl:when test="(($curHour = '13' and $curMin >= '45' and $curMin <= '59' ) or ($curHour = '14' and $curMin >= '00' and $curMin <= '30' ))">
Thanks!