Tagged Questions
7
votes
5answers
267 views
Why would I hard-code user permissions in my controller attributes?
I have seen example code that looks like this, which seems perfectly reasonable:
[Authorize(Roles = "Admin, User")]
public class SomeController : Controller
But I have also seen several examples ...
4
votes
3answers
1k views
Role Based Access Control (RBAC) - .Net Component
In my job we are trying to consolidate the Authentication of the application farm with Windows Identity Fundation (WIF) or some custom component based in Membership Provider.
With this, we need to ...
1
vote
1answer
537 views
How to impersonate a Windows built-in Administrator role for a WinForms, C# App?
It seems like the elevation of privileges is a common thing most developers fight with as most of the time they simply do not have it. I for one do but am fighting with a massive Background Worker ...
1
vote
1answer
553 views
Suggest me best role based authentication/authorization method in asp.net that can work control level
I am in need of best method to achieve role based authentication/authorization. The requirements are
It should check accessibility page level, based on role
It should be able to handle visibility of ...
1
vote
8answers
254 views
Anthropomorphising interfaces - good or bad idea?
I have for some time tried to anthropomorphise (meaning human readable) the names I give to interfaces, to me this is the same as give an interface a role based name – trying to capture the purpose of ...
0
votes
1answer
102 views
How to visually separate security-trimmed action links in ASP.NET MVC
I am experimenting with security-trimmed action links in ASP.NET MVC, and am considering using the SecurityTrimmedActionLink helper method described here.
What I would like to do is put a vertical ...