What is role manager work in web.config?
how to restrict perticular pages from the users using the
role manager?
Answer Posted / nisarg 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 ? | 7 Yes | 3 No |
Post New Answer View All Answers
How do you declare static variable? What is its lifetime?
What is the importance of aspnet_isapi.dll, inetinfo.exe andaspnet_wp.exe in the page loading process.
IN an ASP.NET Web application if there is any error, how can you debug?
How to display validation messages in one control?
What is custom events?
Explain how can we access static variable?
Can master pages be nested?
What does it mean your session has timed out?
Which is better asp.net or php?
What is the default authentication mode for asp.net?
Explain the namespace classes used in asp.net mvc? : asp.net mvc
What is the difference between CC and BCC?
What is the difference between login controls and forms authentication?
How does session state work in asp.net?
Which object wraps the state or data of a user?