Global:Page.Name

Version: - globalvalue  

Summary

Returns the name of the current page.

Settings

The value comes from the Page name field for the page.

Examples

Outputting the template tag

@GetGlobalValue("Global:Page.Name")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetGlobalValue("Global:Page.Name"); }

Outputting the template tag

<!--@Global:Page.Name-->

Check if globalvalue has a value

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