TodayISO Element
Applies to: SharePoint Foundation 2010
Renders the current date and time in International Organization for Standardization (ISO) format: YYYY-MM-DDTHH:MM:SSZ (for example, 2001-01-21T22:54:47Z).
<TodayISO>
</TodayISO>
Attributes
Attribute |
Description |
---|---|
None |
N/A |
Child Elements
None |
Parent Elements
Numerous |
Occurrences
Minimum: 0 Maximum: Unbounded |
Remarks
Note that the date and time returned are relative to the server’s local time zone.
Example
The following example evaluates the default value for a DateTime field type and inserts the current date in ISO format if the value is "[today]". Otherwise, the code inserts the raw value contained in the field.
<Switch>
<Expr>
<Property Select="Default" />
</Expr>
<Case Value="[today]">
<HTML>"</HTML>
<TodayISO />
<HTML>"</HTML>
</Case>
<Default>
<ScriptQuote>
<Column HTMLEncode="TRUE" />
</ScriptQuote>
</Default>
</Switch>