UserManagement:Group.DefaultUrl

Version: - string  

Summary

Returns the default URL of the group similar to this:

Default.aspx?ID=14866&ObjectID=271&Action=Detail

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("UserManagement:Group.DefaultUrl")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("UserManagement:Group.DefaultUrl"); }

Outputting the template tag

<!--@UserManagement:Group.DefaultUrl-->

Check if string has a value

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