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 th..

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

More ASP.NET Interview Questions

Difference between abstract class and interface

2 Answers   Fidelity,


Explain the difference between webfarm and webgardens in .net?

0 Answers  


Which namespace is used by ado.net?

0 Answers  


How to create a permanent cookie?

1 Answers   IBM,


what is view state

5 Answers   Microsoft, Siebel Systems,


Which platform does Microsoft .NET use for exchanging data between applications?

0 Answers  


Explain how do you validate the controls in an asp .net page?

0 Answers  


how many databases and tables are uses in one project?

2 Answers  


What is the file through which you can customize your asp.net application?

0 Answers  


How do you use viewstate?

0 Answers  


Why would anyone need to implement their own hashtable or linked list?

0 Answers  


About friend and Protected friend ?

3 Answers   MMTS,


Categories