Ecom:ProductList.Pages.Page.Number

Version: - string  

Summary

Returns number a page in the product list.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:ProductList.Pages.Page.Number")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:ProductList.Pages.Page.Number"); }

Outputting the template tag

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

Check if string has a value

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