Item.Page.Field.Value

Version: - string  

Summary

Returns the content of the item field in page properties.

Settings

The value is based on the value that is filled in the item field.

Examples

Outputting the template tag

@GetString("Item.Page.Field.Value")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Item.Page.Field.Value"); }

Outputting the template tag

<!--@Item.Page.Field.Value-->

Check if string has a value

<!--@If Defined(@Item.Page.Field.Value)--> Let's output this tag here: <strong><!--@Item.Page.Field.Value--></strong> <!--@EndIf(@Item.Page.Field.Value)-->