Global:Page.Editor.Name
Version: - globalvalueSummary
Returns the name of the last editor of the current page.
Settings
The value is based on the Name input field in the User details section for the user.
(Users tab > Group/User > User tab > User info > Name )
Examples
Outputting the template tag
@GetGlobalValue("Global:Page.Editor.Name")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetGlobalValue("Global:Page.Editor.Name"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetGlobalValue("Global:Page.Editor.Name");
}
Outputting the template tag
<!--@Global:Page.Editor.Name-->
Check if globalvalue has a value
<!--@If Defined(@Global:Page.Editor.Name)-->
Let's output this tag here: <strong><!--@Global:Page.Editor.Name--></strong>
<!--@EndIf(@Global:Page.Editor.Name)-->