有人可以为我提供有关表单身份验证的好文章。如何借助屏幕截图和一个简单的示例来实现它。或者你可以给我提供文章的链接。
问问题
45 次
2 回答
0
这是来自微软的链接
if (Membership.ValidateUser(userName.Text, password.Text))
{
if (Request.QueryString["ReturnUrl"] != null)
{
FormsAuthentication.RedirectFromLoginPage(userName.Text, false);
}
else
{
FormsAuthentication.SetAuthCookie(userName.Text, false);
}
}
else
{
Response.Write("Invalid UserID and Password");
}
于 2013-09-25T08:53:10.530 回答
0
从有关表单身份验证的 MSDN 文章开始,有示例并按步骤指南设置
于 2013-09-25T08:53:22.380 回答