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