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