RE: [xsl] Current Date and Time

Subject: RE: [xsl] Current Date and Time
From: "Bruce Rojas-Rennke" <brr@xxxxxxx>
Date: Tue, 23 Sep 2003 14:30:56 -0600
Ahoy matie,

  I use this javascript bit as below.. much more painless


<head>

  <script language="JavaScript">
    <!--
    //-- returns the current date in mm.dd.yyyy format as a string :
      function todayStr()
      { var today=new Date()
        return
today.getMonth()+1+"."+today.getDate()+"."+(today.getYear()) }
    //-->
  </script>
</head>

<tr>
  <td align="center">
    <span style="font-size:10pt; font-weight:bold;">
	a/o <script>document.write(todayStr())</script>
    </span>
  </td>
</tr>

cheers,
- Flashlight

-----Original Message-----
From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx]On Behalf Of Martinez,
Brian
Sent: Tuesday, September 23, 2003 2:18 PM
To: 'xsl-list@xxxxxxxxxxxxxxxxxxxxxx'
Subject: RE: [xsl] Current Date and Time


> From: James Paul [mailto:jpaul@xxxxxxxxxxx]
> Sent: Tuesday, September 23, 2003 2:00 PM
> Subject: [xsl] Current Date and Time
>
>
> Is there an easy way to get the current date and time in XSLT?  If not
> how could you do this.

XSLT 1.0 has no built-in date/time functionality, but if portability is not
an issue you may be able to use extension libraries like EXSLT:
http://www.exslt.org/date/index.html.  There's no guarantee a given
processor supports all EXSLT functionality, of course.

XSLT 2.0 (in working draft) also provides date/time functionality:
http://www.w3.org/TR/xslt20/#format-date.

hth,
b.

| brian martinez                           brian.martinez@xxxxxxxxxxx |
| lead gui programmer                                    303.357.3548 |
| cheap tickets, part of trip network                fax 303.357.3380 |
| 6560 greenwood plaza blvd., suite 400           englewood, co 80111 |
| cendant travel distribution services   http://www.cheaptickets.com/ |

 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