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