I have a header path and there should be current system date along with a string.
<xsl:template name="GetHeaderLine">
<xsl:text>A</xsl:text>
<xsl:text>,</xsl:text>
<xsl:text>Agency</xsl:text>
<xsl:value-of select="Date"/>
The output should be
A,Agency{CurrrentDate},
How can i fetch current date on xslt...?