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