Web.config
Hvis jeg vil give adgang til en række side og blokkere for nogle andre sider, kan jeg i web.config filen skrive:<location path="test1.aspx">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
<location path="test2.aspx">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
<location path="test3.aspx">
<system.web>
<authorization>
<deny users="?"/>
</authorization>
</system.web>
</location>
<location path="test4.aspx">
<system.web>
<authorization>
<deny users="?"/>
</authorization>
</system.web>
</location>
Er der nogen måde jeg kan samle siderne, så jeg kun skal skrive:
<location path="???">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
<location path="???">
<system.web>
<authorization>
<deny users="?"/>
</authorization>
</system.web>
</location>