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