Ecom:ProductList.Pages.Page.IsCurrent

Version: - string  

Summary

Returns True if a page of the product list is current one.  

Settings

The value is generated automatically.

Examples

Outputting the template tag

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

Check if tag has a value

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

Outputting the template tag

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

Check if string has a value

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