Posted on: 1/23/2014 3:35:05 PM | Views : 624

Hello,
I get back to an old web app where the authentication does not work. we can always access the pages even if we don't have the correct role.
it seems that some part are missing in the solution but I don't know which ones
to resume
I have i my web.config the below settings
<roleManager defaultProvider="SqlProviderRoles" enabled="true"> <providers> <clear/> <add name="SqlProviderRoles" type="System.Web.Security.SqlRoleProvider" connectionStringName="appConnectionString" applicationName="app.Config"/> </providers> </roleManager> <membership defaultProvider="SqlProviderMembership" userIsOnlineTimeWindow="15"> <providers> <clear/> <add name="SqlProviderMembership" type="System.Web. ...

Go to the complete details ...