Ecom:CustomerCenter.FavoriteList.Product.Quantity.IncrementLink

Version: - string  

Summary

Returnst URL to increase products in specific product list.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:CustomerCenter.FavoriteList.Product.Quantity.IncrementLink")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Ecom:CustomerCenter.FavoriteList.Product.Quantity.IncrementLink"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:CustomerCenter.FavoriteList.Product.Quantity.IncrementLink"); }

Outputting the template tag

<!--@Ecom:CustomerCenter.FavoriteList.Product.Quantity.IncrementLink-->

Check if string has a value

<!--@If Defined(@Ecom:CustomerCenter.FavoriteList.Product.Quantity.IncrementLink)--> Let's output this tag here: <strong><!--@Ecom:CustomerCenter.FavoriteList.Product.Quantity.IncrementLink--></strong> <!--@EndIf(@Ecom:CustomerCenter.FavoriteList.Product.Quantity.IncrementLink)-->