Hi all,
I have web application using Oracle DB i used membership with it and roles but when i tried to use sitemap with roles to allow user to display menu according to role not working with me
In Web.Config i add this code :
<system.web>
<customErrors mode="Off"/>
<compilation debug="true" targetFramework="4.0" />
<authorization>
<deny users="?"/>
</authorization>
<authentication mode="Forms">
<forms loginUrl="~/Account/Login.aspx" timeout="2880" />
</authentication>
<profile defaultProvider="DefaultProfileProvider">
<providers>
<clear />
<add name="DefaultProfileProvider" type="System.Web.Providers.DefaultProfileProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31 ...
Go to the complete details ...