FirstActivePageID

Version: - integer  

Summary

Returns ID of first active page in the website language.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("FirstActivePageID")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@FirstActivePageID-->

Check if integer has a value

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