UserManagement:User.ConfigurationID

Version: - string  

Summary

Returns the user configuration ID.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("UserManagement:User.ConfigurationID")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("UserManagement:User.ConfigurationID"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("UserManagement:User.ConfigurationID"); }

Outputting the template tag

<!--@UserManagement:User.ConfigurationID-->

Check if string has a value

<!--@If Defined(@UserManagement:User.ConfigurationID)--> Let's output this tag here: <strong><!--@UserManagement:User.ConfigurationID--></strong> <!--@EndIf(@UserManagement:User.ConfigurationID)-->