ASP.Net MVC 4 Manage Roles - Windows Authentication -


i have mvc 4 web application want implement sqlroleprovider , windows authentication it.
after did search in google added sqlroleprovider tables in database running aspnet_regsql command in vs command prompt. added web.config:

<authentication mode="windows" /> <rolemanager enabled="true">   <providers>     <clear />     <add connectionstringname="portaldbcontext" applicationname="/" name="aspnetsqlroleprovider" type="system.web.security.sqlroleprovider" />     <add applicationname="/" name="aspnetwindowstokenroleprovider" type="system.web.security.windowstokenroleprovider" />   </providers> </rolemanager> 

now need know how can manage roles? mean how create/edit/delete roles , assign/un-assign users roles?
should create these pages myself or there available may nuget?

i roll own. , has been years, not sure if supported anymore, can use asp.net web site administration tool if on iis. it's slow , clunky if recall get's job done.


Comments

Popular posts from this blog

c++ - How to add Crypto++ library to Qt project -

jQuery Mobile app not scrolling in Firefox -

How to use vim as editor in Matlab GUI -