实现由web.config控制的验证

发表于:2007-06-30来源:作者:点击数: 标签:
1、在web.config文件中有这一段内容:

<authentication mode="Forms">
<forms name=".ASPXUSERDEMO" loginUrl="login.aspx" protection="All" timeout="60" />
</authentication>
<authorization>
<deny users="?" />
</authorization>

2.在login.aspx中如果用户名和密码正确则给予验证:

FormsAuthentication.SetAuthCookie(TextBox_name.Text,false); //在本页
FormsAuthentication.RedirectFromLoginPage(TextBox1.Text,false); //转到操作页

3.退出验证:

FormsAuthentication.SignOut();

4.获得当前用户的名字:

User.Identity.Name;

原文转自:http://www.ltesting.net