Form.ID
Version: - integerSummary
Returns the unique ID of the form.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetInteger("Form.ID")
Check if tag has a value
@if(!int.IsNullOrWhiteSpace(GetInteger("Form.ID"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
int storedTag = GetInteger("Form.ID");
}
Outputting the template tag
<!--@Form.ID-->
Check if integer has a value
<!--@If Defined(@Form.ID)-->
Let's output this tag here: <strong><!--@Form.ID--></strong>
<!--@EndIf(@Form.ID)-->