How do you do role based security ?
1.Create a principle object which contains users identity
(login name) and array of roles
2.and pass this object to HttpContext.Current.User
3.The roles supplied to this object will be checked against
roles specified in the web.config file,if they matched then
they are allowed access to the page otherwise not.
allowed roles can be specified like this in web.config
<authorization>
<allow roles="Administrator,CanEdit"/>
<deny users="*" />
</authorization>
| Is This Answer Correct ? | 17 Yes | 1 No |
How to identify the Code which Complies corresponding Compiler in .NET? Means Suppose, i am taking One project A.. in which code is implemented using C# langugge. And Another Project B..in Which Code is implemented using VB.NET. Suppose I am creating Project C. i am adding Reference of Project A and B to Project C. So, in Project C, how to identify Project A is Complied through CSCompliler? And Project B is Compiled VBCompiler at Runtime?
What are the levels at which filters can be applied in an asp.net mvc application?
Can two application one using private assembly and other using Shared assembly be stated as a side-by-side executables?
Which is the root namespace for fundamental types in .net framework?
what is the use of final method
What is connected scenario? : Entity framework
Is it possible to use multipe inheritance in .net
Which filter executes first in an asp.net mvc application?
Can I look at the IL for an assembly
what do you mean by navigation property?
How we can call a JavaScript function on the change of a Dropdown List in ASP.Net MVC?
How we can add the css in mvc?