Ecom:CustomerCenter.DefaultList.SendListPage

Version: - string  

Summary

Returns an URL to the page with the send list as email form.

Settings

The value is generated automatically.

Remarks

This tag can be used for the list marked as default.

Examples

Outputting the template tag

@GetString("Ecom:CustomerCenter.DefaultList.SendListPage")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:CustomerCenter.DefaultList.SendListPage"); }

Outputting the template tag

<!--@Ecom:CustomerCenter.DefaultList.SendListPage-->

Check if string has a value

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