我正在使用c#membership provider,我从查询字符串中获取用户名。现在我需要检查用户名是否存在,如果需要,我需要自动验证用户身份。
如何检查用户是否存在于会员数据库中?
答案 0 :(得分:2)
如果您有密码:
if (Membership.ValidateUser(userName, "password"))
{
FormsAuthentication.SetAuthCookie(userName, true);
Response.Redirect("~/welcome.aspx");
}
或者您只是想检查用户是否存在并将其记录在
中 if (Membership.GetUser(userName) != null)
{
FormsAuthentication.SetAuthCookie(userName, true);
Response.Redirect("~/welcome.aspx");
}
答案 1 :(得分:1)
检查Membership.GetUser方法。如果用户存在,则可以使用FormsAuthentication.SetAuthCookie对用户进行身份验证。
答案 2 :(得分:1)
如果您正在寻找SSO解决方案,可以在此处找到更多信息
http://weblogs.asp.net/hernandl/archive/2004/06/09/ssoformsauth.aspx