Ecom:Product:Area.Name

Version: - string  

Summary

Returns the name of the current website.

Settings

The value is based on the Name of the website.

(Modules - Websites - Website - Name)

Examples

Outputting the template tag

@GetString("Ecom:Product:Area.Name")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Product:Area.Name"); }

Outputting the template tag

<!--@Ecom:Product:Area.Name-->

Check if string has a value

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