This book is amazing and I'm working on my own project now and I came across this Management login problem where I'm not able to login using my management account created using ASP.Net website administration tool.
Here is my web.config code for roles
Code:
<location path="Management">
<system.web>
<authorization>
<allow roles="Managers"/>
<deny users="*"/>
</authorization>
</system.web>
</location>
I've checked everything. I did exactly whats given in the book. But cant figure out the actual problem. My other user login's are working except for Management accounts. When I try to login using Management account the validation kicks in saying your login account was not successful.


Thanks.