网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 大学论文导航 设计下载 最新论文 下载排行 原创论文 论文源代码
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > ASP.net > 正文

asp.net 学习笔记

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/13
证模式
  
  身份验证类型: NONE 描述: 没有身份验证.用于匿名用户和可以提供其自己的身份验证的应用程序.
  <configuration>
  <system.web>
  <authentication mode="Windows|Forms|Passport|None">?
  <forms name="name" loginUrl="url"
  protection="All|NOne|Encryption"
  timeout="xx" path="/">?
  <credentials passwordFormat="Clear|SHA1|MD5"> /*Clear为明文密码*/
  <user name="用户名" password="密码"/>
  </credentials>
  </forms>?
  <passport redirectUrl="internal"/>?
  </authentication>
  </system.web>
  </configuration>
  
  //基于forms先把IIS中该应用的匿名访问去掉
  
  <forms>标记的属性
  
  属性   选项     描述
  name    None    登录身份验证的Cookie名称
  loginUrl  None    登录页URL.如果没有身份验证Cookie,客户端将被重定向到此URL
  protection ALL     应用程序同时使用数据验证和加密来保护Cookie
  None    加密和验证都禁用
  timeout        一段时间(按分钟计),这段时间之后身份验证Cookie将到期,默认值为30
  path          由应用程序发布的Cookie的路径.默认值是反斜杠(/)
  
  <authentication mode="Forms">
  <forms name="YourCookieName" loginUrl="login.aspx" protection="ALL"></forms>
  </authentication>
  //授权
  <authorization>
  <allow users="?"/>    //<allow users="*"/><!--允许所有用户 -->
  <!--
  <allow users="[逗号分隔的用户列表]"
  roles="[逗号分隔的角色列表]"/>
  <deny users="[逗号分隔的用户列表]"
  roles="[逗号分隔的角色列表]"/>
  -->
  </authorization>
  
  //login.aspx
  
  登录代码
  
  //连接数据库进行验证
  
  if(true)//用户名是否合法
  {
  // System.Web.Security.FormsAuthentication.SetAuthCookie(this.TextBox1.Text,false);//指定的用户名写入到Cookie中(false临时Cookie,true永久Cookie)
  // Response.Redirect("");
  System.Web.Security.FormsAuthentication.RedirectFromLoginPage(this.TextBox1.Text,false);//转到用户原访问的页
  //如果为true,可用System..Web.Security.FormsAuthentication.SignOut();删除,以后又要求登录
  }
  else
  {
  Response.Write("用户不合法");
  }
  
  //如果用户少的话,可以不用数据库,直接允许/拒绝用户
  <authentication mode="Forms"
  <forms name="authCre" loginUrl="login.aspx" protection="ALL">
  <credentials passwordFormat="Clear">
  <user name="aaa" password="aaa"/>
  <user name="bbb" password="bbb"/>
  </credentials>
  </forms>
  </authentication>
  
  登录代码
  
  private void Button1_Click(object sender,System.EventArgs e)
  {
  if(System.Web.Security.FormsAuthentication.Authenticate(this.TextBox1.Text,This.TextBox2.Text)
  {
  //  System.Web.Security.FormsAuthentication.SetAuthCookie(this.TextBox1.Text,true);//此方法需重定向
  //  Response.Redirect("WebForm1.aspx");
  System.Web.Security.FormsAuthentication.RedirectFromLoginPage(this.TextBox1.Text,false);//此方法不需要重定向,直接转到原访问页
  }
  else
  {
  Response.Write("用户不合法");
  }
  }
  //授权时,通配符*表示任何人,?表示匿名
  • 下一篇资讯: ASP.NET强大的性能
  • 网学推荐

    免费论文

    原创论文

    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号