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