ReplyCount

Version: - integer  

Summary

Returns the number of replies to the comment.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("ReplyCount")

Check if tag has a value

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

Assign tag to a value for later use

@{ int storedTag = GetInteger("ReplyCount"); }

Outputting the template tag

<!--@ReplyCount-->

Check if integer has a value

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