Share via


TodayISO Element

The TodayISO element 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).

Syntax

<TodayISO>
</TodayISO>

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>