how to find the current date in XSLT 1.0

后端 未结 2 477
南旧
南旧 2020-11-30 15:21

I am finding trouble in retrieving the current date in my XSLT code. I am using version 1.0 and MSXSL.exe application to trigger my xslt code. I tried using the following

2条回答
  •  感情败类
    2020-11-30 16:05

    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.

提交回复
热议问题