首页 > 编程 > .NET > 正文

Asp.net的安全认证及Web.config的配置

2024-07-10 13:11:47
字体:
来源:转载
供稿:网友
(1)在web.config的配置   
   在<system.web>中修改选项
     验证模式设为form,并且验证页为
      <authentication mode="forms">
        <forms loginurl="login.aspx" />
      </authentication>
     不允许匿名用户
      <authorization>
        <deny users="?" />
      </authorization>

   在</system.web>后加入不要验证就能使用数据库的页面,用于在该页访问数据库,察看是否存在该用户。
     <location path="reg.aspx">
       <system.web>
         <authorization>
           <allow users="*"/>
         </authorization>
       </system.web>
     </location>

  (2)在代码中按普通方式,例如要求对方输入信息查找数据库或者xml进行验证,验证通过后,执行这句就表示验证通过同时跳会开始进入的页面
      system.web.security.formsauthentication.redirectfromloginpage(username,true);
      注销用 system.web.security.formsauthentication.signout();  
      如果不想跳回原处,可以先授权再redirect到其他页面  system.web.security.formsauthentication.setauthcookie();,欢迎访问网页设计爱好者web开发。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表