Author: helioshimojo | Posted on: 6/29/2010 3:53:21 PM | Views : 1526

Hi. I was wondering how to make a special authorization like this situation:
1- There is a folder called "training_videos" which the authorization is set like this:
<location path="/training_videos"> <system.web> <authorization> <deny users="*"/> </authorization> </system.web></location> 
I want to set another authorization for a page inside this folder, I want to do something like this (but this won´t work) <location path="/training_videos/page.aspx"> 
  <system.web> 
    <authorization> 
      <allow roles="admin"/> 
    </authorization> 
  ...

Go to the complete details ...