[FieldSystemName]

Version: - string  

Summary

Returns the content of the field.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("[FieldSystemName]")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@[FieldSystemName]-->

Check if string has a value

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