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