File: Transform.xslt
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:template match="/">
<xsl:text>
 The current date is </xsl:text>
<xsl:value-of select="format-date(current-date(), '[M01]/[D01]/[Y0001]')"/>
</xsl:template>
</xsl:stylesheet>
Output:
The current date is 12/11/2008
|