Global:Extranet.Password

Version: - globalvalue  

Summary

Returns the password for the extranet user.

Settings

The value is based on Password input field in the User info section for the extranet/intranet user.

(User management > User> User details panel > User info > Password)

Examples

Outputting the template tag

@GetGlobalValue("Global:Extranet.Password")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if globalvalue has a value

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