how Create a exception in Authorization tag in web.config
Posted
by pablogrind
on Stack Overflow
See other posts from Stack Overflow
or by pablogrind
Published on 2010-06-14T02:54:31Z
Indexed on
2010/06/14
3:02 UTC
Read the original article
Hit count: 380
How i create a exception in location to allow access to page GanttViewer.aspx with other rol and others pages only with Admin rol
<location path="Admin">
<system.web>
<authorization>
<allow roles="Admin"/>
<deny users="*"/>
</authorization>
</system.web>
</location>
© Stack Overflow or respective owner