采用membership和登录控件Login实现登录功能,但遇到一个问题就是原来的用户登录网站只要一次就能登录了,但是点击LoginStatus后同样的用户再登陆就需要登录两次了,不知道为什么,望不吝赐教,forms配置如下:
<authentication mode="Forms">
<forms name="myAuthentication" loginUrl="Login.aspx" defaultUrl="Main.aspx" protection="All" timeout="30" path="/"></forms>
</authentication>
<authorization>
<allow roles="超级用户,管理员,普通用户,受限用户"/>
<deny users="*"/>
</authorization>
<anonymousIdentification enabled="true"/>