Ecom:CustomerCenter.List.Description

Version: - string  

Summary

Returns the description of the list.

Settings

The value is generated automatically.

Remarks

The value is based on the description input field when creating the list.

Examples

Outputting the template tag

@GetString("Ecom:CustomerCenter.List.Description")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:CustomerCenter.List.Description"); }

Outputting the template tag

<!--@Ecom:CustomerCenter.List.Description-->

Check if string has a value

<!--@If Defined(@Ecom:CustomerCenter.List.Description)--> Let's output this tag here: <strong><!--@Ecom:CustomerCenter.List.Description--></strong> <!--@EndIf(@Ecom:CustomerCenter.List.Description)-->