Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.7k views
in Technique[技术] by (71.8m points)

xml - how to find the current date in XSLT 1.0

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 line of code to implement this functionality, however its not working. Looks like the version 1.0 doesn't support the current date function. Could you please provide a solution which will work for xslt 1.0.

               <xsl:value of select="current-date()"/>
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...