Submit.ID

Version: - integer  

Summary

Returns the ID of the submitted dataset.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("Submit.ID")

Check if tag has a value

@if(!int.IsNullOrWhiteSpace(GetInteger("Submit.ID"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ int storedTag = GetInteger("Submit.ID"); }

Outputting the template tag

<!--@Submit.ID-->

Check if integer has a value

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