Posted on: 12/24/2013 9:46:39 AM | Views : 700

Dear all,
I'm using asp.net membership to manage authentication, i use the standard login page found in account folder, and inside the folder i want only allowed users to access i have configuration file with this content:
<configuration> <system.web> <customErrors mode="RemoteOnly" defaultRedirect="~/error.html"/> <authorization> <allow roles="Employee" /> <deny users="*" /> </authorization> </system.web> </configuration>

<div class="post-text" itemprop="description"> This is pretty standard method I've been using for a long time, the problem i'm facing here is after a user log in, he/she navigates to any page in the folder and t ...

Go to the complete details ...