Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Forms Authentication and I want to restrict certain pages to certain roles. Right now everyone has access to the entire application once logged in.

But I'd like to restrict certain pages to certain roles. For example, the "view logs" page.

I'm thinking that my web.config file should look like this:

<location path="logs/view/">
<system.web>
  <authorization>
    <allow roles="super, admin"/>
  </authorization>
</system.web>

But my issue is that, the way the underlying application is built, when user logs in successfully via an api call I am returned a "User" onbject and that user's role is part of that object (User.Role == "admin"). I don't really have a reference database table that tells the APP what role a user has.

How can I associate the

<allow roles="super, admin"/> 

bit in my webconfig to the role property of the User object?

share|improve this question

2 Answers

up vote 1 down vote accepted

You can wire up to AuthenticateRequest event of the HttpApplication instance in your global.asax. In that context, you need to configure the IPrincipal implementation to have the desired settings. The easiest way to do this will be by instantiating a RolePrincipal and setting the User property of the HttpContext.

Update I just looked up some sample implementations that I've posted on previous answers. There is one that is based on ASP.NET MVC and another based on Web Forms.

share|improve this answer

use Location based settings.

<configuration>
   <location path="Logon.aspx">
      <system.web>
         <authorization>
            <allow users="?"/>
         </authorization>
      </system.web>
   </location>
</configuration>

for more information you can take a walkthru on MSDN

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.