UserManagement:User.ManageAddressesUrl

Version: - string  

Summary

Returns the url to the page where you manage the addresses for the user - in a form like this: Default.aspx?ID=14867&ObjectID=264&Action=ManageAddresses.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("UserManagement:User.ManageAddressesUrl")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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