DwPageEditorName

Version: - string  

Summary

Returns the name of the editor.

Settings

The value is based on the Name input field for a user.

(User Management > User > User tab > Personal panel > Name)

Examples

Outputting the template tag

@GetString("DwPageEditorName")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@DwPageEditorName-->

Check if string has a value

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