Ecom:CustomerCenter.DefaultList.Link.Clean

Version: - string  

Summary

Returns the URL to the list.

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.Link.Clean")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Ecom:CustomerCenter.DefaultList.Link.Clean-->

Check if string has a value

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