hi All
I want to setup a authorization permission in ASP.NET application.
Hence , in one particular folder I want to deny the access of one particular user which user role is granted as allow for that particular.
<authorization>
<allow roles="General" />
<allow roles="Sale" />
<allow roles="Administrator" />
<deny users="admin_test" />
</authorization>
However , when I tried to access the pages from that particular folder by using the admin_test account , system allow me to access the page instead of denying the access.
Can anyone point out what wrong with above configuration?
Any help would be much appreciated.
Regards,
Ran