Forum:Message.CategoryID

Version: - integer  

Summary

Returns the ID of the current forum category.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("Forum:Message.CategoryID")

Check if tag has a value

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

Assign tag to a value for later use

@{ int storedTag = GetInteger("Forum:Message.CategoryID"); }

Outputting the template tag

<!--@Forum:Message.CategoryID-->

Check if integer has a value

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