Ecom:CustomerCenter.List.CreateList

Version: - string  

Summary

Returns an URL that can be used as Action in the list form if list mode is create.

Settings

The value is generated automatically.

Examples

Outputting the template tag

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

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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