Item.Page.Field.Name

Version: - string  

Summary

Returns the name of the item field in page properties.

Settings

The value is based on the Name field in the field settings for the item field.

(Management center - System - Item fields - Item field - Field - Field settings - Name)

Examples

Outputting the template tag

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

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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