深圳升蓝软件
数据库开发 .Net技术  |  ASP技术 PHP技术 JSP技术 应用技术类   
Hiblue Software

实现由web.config控制的验证


March 25,2004
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;

       
Copyright © 2001-2008 Shenzhen Hiblue Software Team All rights reserved