Page:Ecom.ProductList.Pages.Page.IsLastPage

Version: - boolean  

Summary

Returns True if the page is the last page.

Settings

The value is generated automatically.

Examples

Outputting the template tag

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

Check if tag has a value

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

Outputting the template tag

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

Check if boolean has a value

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