我正在使用会员提供程序,但我如何获得我的用户名和密码来登录/登录?当我用这段代码查看时:
if (User.Identity.IsAuthenticated)
// this code always returns false
当用户使用asp:Login登录时,我之前有这个:
if (Membership.ValidateUser(email, password))
{
// this is true but what am I missing here to make above not be false?
所谓的重复问题/答案使用SetAuthCookie,根据这个(),它会导致