UserManagement:User.Address.InputName

Version: - string  

Summary

Returns an ID/name for the address field that can be used in the code for an input field.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("UserManagement:User.Address.InputName")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@UserManagement:User.Address.InputName-->

Check if string has a value

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