Ecom:ProductList.Pages.Page.UrlEncoded

Version: - string  

Summary

Returns encoded URL to select a page of the product list. 

Settings

The value is generated automatically.

Examples

Outputting the template tag

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

Check if tag has a value

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

Outputting the template tag

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

Check if string has a value

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