Forum:FirstAnswer.AuthorID

Version: - integer  

Summary

Returns ID of author of first answer. 

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("Forum:FirstAnswer.AuthorID")

Check if tag has a value

@if(!int.IsNullOrWhiteSpace(GetInteger("Forum:FirstAnswer.AuthorID"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ int storedTag = GetInteger("Forum:FirstAnswer.AuthorID"); }

Outputting the template tag

<!--@Forum:FirstAnswer.AuthorID-->

Check if integer has a value

<!--@If Defined(@Forum:FirstAnswer.AuthorID)--> Let's output this tag here: <strong><!--@Forum:FirstAnswer.AuthorID--></strong> <!--@EndIf(@Forum:FirstAnswer.AuthorID)-->