18

I'm using:

  • VS2015u2
  • ASP.NET 5
  • MVC 6

I'm looking for some UI to manage users/roles.

Some things I've tried:

f0rt
  • 1,435
  • 2
  • 12
  • 24

2 Answers2

-1

If you want get all of Roles, Users with UI to manage ASP.NET Identity users/roles. This
Try to make new black asp.net MVC project. Make sure do not click Individual User Account. Only Blank. Then Go to Package Manager Console and Hit following query on console.

Install-Package Microsoft.AspNet.Identity.Samples -Version 2.2.0-alpha1

This package contains an ASP.NET MVC application which shows you how to use the features in ASP.NET Identity. also compatible with ASP.NET. You should be check default Role and users once you connect database with ApplicationDbContext.

Daya Stark
  • 137
  • 5
-2

Please check out ASP.NET MVC 5 Security And Creating User Role https://code.msdn.microsoft.com/ASPNET-MVC-5-Security-And-44cbdb97

Hopefully this is what you're looking for.

pforsthoff
  • 116
  • 8