Global:Page.Manager.Fax

Version: - globalvalue  

Summary

Returns the fax number of the page manager of the current page.

Settings

The value is based on the Fax input field in the Information section for the user.

(Users tab > Group/User > User > Personal > Fax)

Examples

Outputting the template tag

@GetGlobalValue("Global:Page.Manager.Fax")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Global:Page.Manager.Fax-->

Check if globalvalue has a value

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