ASP.net 身份验证 设置角色问题 急!!!
web.config配置如下:<authentication mode="Forms">
<forms loginUrl="Login.aspx" protection="All">
</forms>
</authentication>
<location path="Admin">
<system.web>
<authorization>
<allow roles="admins"/>
<deny users="*"/>
</authorization>
</system.web>
</location>
我在登陆页面中从数据库中查到了角色为admins的用户
然后用User.IsInRole("admins")判断
请问如何把我从数据库查出来的角色 能和User.IsInRole("admins")关联起来 --------------------编程问答-------------------- User.IsInRole("admins")是你的一个方法??
看你的方法返回什么类型的值?
补充:.NET技术 , ASP.NET