ZipCode

Version: - string  

Summary

Returns ZIP code of the shop.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("ZipCode")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("ZipCode"); }

Outputting the template tag

<!--@ZipCode-->

Check if string has a value

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