What is role manager work in web.config? how to restrict
perticular pages from the users using the role manager?
Answer Posted / alb.shah
Role manager work -
Role management helps you manage authorization,
which enables you to specify the resources that users in
your application are allowed to access. Role management
lets you treat groups of users as a unit by assigning users
to roles such as manager, sales, member, and so on. (In
Windows, you create roles by assigning users to groups such
as Administrators, Power Users, and so on.)
Web.config code to restrict users from accessing some pages
given as below : -
<configuration>
<location path="memberPages">
<system.web>
<authorization>
<allow roles="BUILTIN\Administrators" />
<deny users="*" />
</authorization>
</system.web>
</location>
<!-- other configuration settings here -->
</configuration>
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is the difference between union and join?
What is viewstate parameter?
What is query string with example?
How to improve performance of web application asp.net mvc? : Asp.Net MVC
Which two new properties are added in asp.net 4.0 page class?
What are session cookies?
Explain code snippet to register exception filters from controller?
How do I open an ashx file in windows 7?
What is asp net_sessionid?
If Instancing = Single use for ActiveX Exe, how will this be executed if there are 2 consecutive client requests ?
What is cross page posting in asp net?
What is ispostback property?
What is a server cookie?
What is http only cookie?
Where would you use an ihttpmodule, and what are the limitations of any?