Form.LastSubmitDate

Version: - date  

Summary

Returns the date and time for the when the form was submitted last.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetDate("Form.LastSubmitDate")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetDate("Form.LastSubmitDate"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetDate("Form.LastSubmitDate"); }

Outputting the template tag

<!--@Form.LastSubmitDate-->

Check if date has a value

<!--@If Defined(@Form.LastSubmitDate)--> Let's output this tag here: <strong><!--@Form.LastSubmitDate--></strong> <!--@EndIf(@Form.LastSubmitDate)-->