Global:Extranet.Address

Version: - globalvalue  

Summary

Returns the address of the extranet user.

Settings

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

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

Examples

Outputting the template tag

@GetGlobalValue("Global:Extranet.Address")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetGlobalValue("Global:Extranet.Address"); }

Outputting the template tag

<!--@Global:Extranet.Address-->

Check if globalvalue has a value

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