Ecom:CustomerRegion.IsCustomerRegion

Version: - string  

Summary

Returns True if the customer's region is the same as the site customer's region. 

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:CustomerRegion.IsCustomerRegion")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:CustomerRegion.IsCustomerRegion"); }

Outputting the template tag

<!--@Ecom:CustomerRegion.IsCustomerRegion-->

Check if string has a value

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