Ecom:CustomerCenter.List.Publish

Version: - string  

Summary

Returns an URL that publish the list.

Settings

The value is generated automatically.

Examples

Outputting the template tag

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

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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