I am wondering if it is bad practice to add a whole bunch of location tags for individual .aspx page authorizations?
<location path="mypage.aspx" >
<system.web>
<authorization>
<allow users="User1,User5"/>
<deny users="*"/>
</authorization>
</system.web>
</location>
I realize that you are able to specify the path as a directory, and then all of the pages within that directory use the authorization rules, however I would like the pages to stay in the root.