xsl-list
[Top] [All Lists]

RE: Current Date and Time

2003-09-23 13:30:56
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(_at_)lists(_dot_)mulberrytech(_dot_)com
[mailto:owner-xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com]On Behalf Of 
Martinez,
Brian
Sent: Tuesday, September 23, 2003 2:18 PM
To: 'xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com'
Subject: RE: [xsl] Current Date and Time


From: James Paul [mailto:jpaul(_at_)quadrem(_dot_)com]
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(_dot_)martinez(_at_)cendant(_dot_)com |
| 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



<Prev in Thread] Current Thread [Next in Thread>