UserManagement:User.ManageAddresses.FormEnd
Version: - stringSummary
Returns the end tag for the form </form> that is used to manage the addresses.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("UserManagement:User.ManageAddresses.FormEnd")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("UserManagement:User.ManageAddresses.FormEnd"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("UserManagement:User.ManageAddresses.FormEnd");
}
Outputting the template tag
<!--@UserManagement:User.ManageAddresses.FormEnd-->
Check if string has a value
<!--@If Defined(@UserManagement:User.ManageAddresses.FormEnd)-->
Let's output this tag here: <strong><!--@UserManagement:User.ManageAddresses.FormEnd--></strong>
<!--@EndIf(@UserManagement:User.ManageAddresses.FormEnd)-->