how to find the current date in XSLT 1.0

There is no current-date() function in XSLT 1.0.

If your processor supports it, you can use the date-time() EXSLT extension function. Otherwise
you will have to pass the date as a parameter to the stylesheet during runtime, or get it from a web service.

Leave a Comment