ASP.NET通过Web.config实现验证账号密码是否正确进行

需要2个账号,一个账号为admin ,密码:123
另外一个账号为guest ,密码:1234

不允许匿名用户,和账号为guest的登录

代码实现

在这里插入图片描述

<configuration> <system.web> <compilation debug="true" targetFramework="4.5.2" /> <httpRuntime targetFramework="4.5.2" /> <authentication mode="Forms"> <!--loginUrl是认证失败去的页面 defaultUrl 是认证成功访问的页面 --> <forms loginUrl="Login.aspx" defaultUrl="/Admin/Admin.aspx" path="https://www.jb51.net/"> <credentials passwordFormat="Clear"> <!--账号密码可以看见--> <user password="123"/> <user password="1234"/> <!--认证的用户账号密码--> </credentials> </forms> </authentication> <!--禁止没有认证的用户访问--> <authorization> <deny users="?"/> <!--拒绝没有登录的匿名用户--> <deny users="guest"/> <!--拒绝账户为guest的用户--> <allow users="admin"/> <!--允许账户为admin的用户--> </authorization> </system.web> </configuration>

? 是没登录的用户(匿名用户) * 是所有用户
deny 是拒绝什么样的用户访问
allow 是允许什么样的用户访问

后台的登录(aspx.cs)

using System.Web.Security

if (FormsAuthentication.Authenticate(this.TextBox1.Text, this.TextBox2.Text)) //看看配置文件里面是否有认证用户 { FormsAuthentication.RedirectFromLoginPage(this.TextBox1.Text, true); //保存cookie 然后打开要去的地址 }

这样一个 过时 的登录就完成了
感谢观看!

到此这篇关于ASP.NET通过Web.config实现验证账号密码是否正确进行登录的文章就介绍到这了,更多相关ASP.NET Web.config登录内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zwwpzf.html