Page:Ecom.ProductList.Pages.Page.IsFirstPage

Version: - boolean  

Summary

Returns True if the page is a first page.

Settings

The value is generated automatically.

Examples

Outputting the template tag

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

Check if tag has a value

@if(!bool.IsNullOrWhiteSpace(GetBoolean("Page:Ecom.ProductList.Pages.Page.IsFirstPage"))) { @* 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.IsFirstPage"); }

Outputting the template tag

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

Check if boolean has a value

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