Returns the number of user custom fields.
The value is generated automatically.
Outputting the template tag
@GetInteger("UserManagement:User.CustomFieldsCount")
Check if tag has a value
@if(!int.IsNullOrWhiteSpace(GetInteger("UserManagement:User.CustomFieldsCount"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
int storedTag = GetInteger("UserManagement:User.CustomFieldsCount");
}
Outputting the template tag
<!--@UserManagement:User.CustomFieldsCount-->
Check if integer has a value
<!--@If Defined(@UserManagement:User.CustomFieldsCount)-->