Hi, I've been trying to add the ASP.NET toolkit to my web application and I can get the demo site to work but I can't seem to implement any of the controls in my application. After playing around with it for a while, I think I've found the problem. In my web.config, I have:
<authorization>
<allow roles="Users"/>
<deny users="*"/>
</authorization>
If I change it to:
<authorization>
<allow roles="Users"/>
</authorization>
Then everything works wonderfully. Is there a set of permissions I need to include to get the Toolkit to work?
Thanks!