Item.Area.[FieldSystemName]

Version: - string  

Summary

Returns the value from the item field that is filled on a website (website properties).

Settings

The value is generated automatically.

Remarks

Based on the item field for the item type that is used for the website.

Examples

Outputting the template tag

@GetString("Item.Area.[FieldSystemName]")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Item.Area.[FieldSystemName]"); }

Outputting the template tag

<!--@Item.Area.[FieldSystemName]-->

Check if string has a value

<!--@If Defined(@Item.Area.[FieldSystemName])--> Let's output this tag here: <strong><!--@Item.Area.[FieldSystemName]--></strong> <!--@EndIf(@Item.Area.[FieldSystemName])-->