Page:Ecom.ProductList.Pages.Page.IsEven

Version: - boolean  

Summary

Returns True if the page is an even page.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetBoolean("Page:Ecom.ProductList.Pages.Page.IsEven")

Check if tag has a value

@if(!bool.IsNullOrWhiteSpace(GetBoolean("Page:Ecom.ProductList.Pages.Page.IsEven"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ bool storedTag = GetBoolean("Page:Ecom.ProductList.Pages.Page.IsEven"); }

Outputting the template tag

<!--@Page:Ecom.ProductList.Pages.Page.IsEven-->

Check if boolean has a value

<!--@If Defined(@Page:Ecom.ProductList.Pages.Page.IsEven)--> Let's output this tag here: <strong><!--@Page:Ecom.ProductList.Pages.Page.IsEven--></strong> <!--@EndIf(@Page:Ecom.ProductList.Pages.Page.IsEven)-->