通过 <authentication> 节可以配置安全身份验证模式,ASP.NET 使用该模式来识别来访用户身份。
1. 在Web.config中设置 <authentication mode="Form">验证属性
2. 在<authentication>标签里设置<forms defaultUrl="跳转界面"(ps:默认跳转地址) loginUrl="跳转界面"(ps:登录跳转地址)>
3. 在<forms>标签里设置<credentials passwordFormat="Clear">(ps:干掉自带的加密验证)
4. 在<credentials>标签里设置<user name="用户名" password="密码">
5. 找到<system.web>标签(ps:<system.web>标签下自带<compilation debug="true">)
6. 在<system.web>标签里设置<authorization>
7. 在<authorization>标签里设置<deny users="?"/>