Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is role manager work in web.config? how to restrict
perticular pages from the users using the role manager?



What is role manager work in web.config? how to restrict perticular pages from the users using the..

Answer / 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

More ASP.NET Interview Questions

What is the difference between ASP and ASP.NET?

4 Answers   Sans Pareil IT Services, TCS,


If I update session state, should I lock it, too? Are concurrent accesses by multiple requests executing on multiple threads a concern with session state?

1 Answers  


How to create multi language website in asp.net mvc? : Asp.Net MVC

0 Answers  


Explain some of the major built-in objects in asp.net

0 Answers  


To add a hyperlink column to the DataGrid which tag is used ?

0 Answers   Siebel,


How to prepare culture-specific formatting in .net.

0 Answers  


What are the main requirements for caching?

0 Answers  


What is the benefit of WebAPI over WCF?

0 Answers  


How do you pass session values from one page to another ?

4 Answers   Digital GlobalSoft,


What is an example of an application service provider?

0 Answers  


Can we have multiple web config files for an asp.net application?

0 Answers  


How to make paging concepts in datagrid in ASP.NET?

0 Answers   Sans Pareil IT Services,


Categories