Nolikes

Version: - integer  

Summary

Returns the number of dislikes that the visitor has submitted with the comment.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("Nolikes")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Nolikes-->

Check if integer has a value

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