Hi Folks,
I am trying to set up trimming in my application.
I use the following code to only allow admin to access the page, but it does not work, can anyone give me a clue?
<authentication mode="Forms">
<forms loginUrl="Default.aspx" timeout="2880" />
</authentication>
<location path="~/Vota/Fin/Doc Despesa/EditDocDesp.aspx">
<system.web>
<authorization>
<allow roles="admin"/>
<deny users="*"/>
</authorization>
</system.web>
</location>
...
Go to the complete details ...