@model SecurityGuard.ViewModels.GrantRolesToUserViewModel @{ ViewBag.Title = "GrantRolesToUser"; Layout = "~/Areas/SecurityGuard/Views/Shared/_SecurityGuardLayoutPage.cshtml"; }

Grant Roles To User

Clicking the "Grant" or "Revoke" buttons will execute that command.

Grant any of the following roles to: @Model.UserName

Available roles

@Html.ListBox("AvailableRoles", Model.AvailableRoles)

Granted Roles

@Html.ListBox("GrantedRoles", Model.GrantedRoles)