Ecom:CustomerCenter.ListTypes.List.Name

Version: - string  

Summary

Returns the name of the list.

Settings

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

Examples

Outputting the template tag

@GetString("Ecom:CustomerCenter.ListTypes.List.Name")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Ecom:CustomerCenter.ListTypes.List.Name-->

Check if string has a value

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