UserManagement:User.Login.Action

Version: - string  

Summary

Returns action name on fronend performing of Extranet module, related to value set in Show section of the module paragraph settings.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("UserManagement:User.Login.Action")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@UserManagement:User.Login.Action-->

Check if string has a value

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