UserManagement:User.City.Input

Version: - string  

Summary

Returns an input field for the user's city.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("UserManagement:User.City.Input")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@UserManagement:User.City.Input-->

Check if string has a value

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