Address

Version: - string  

Summary

Returns the address of the user.

Settings

The value is based on the Address input field for a user.

(User Management > User > User tab > Personal panel > Address)

Examples

Outputting the template tag

@GetString("Address")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Address"); }

Outputting the template tag

<!--@Address-->

Check if string has a value

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