博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
实现记住用户登陆名
阅读量:5115 次
发布时间:2019-06-13

本文共 1201 字,大约阅读时间需要 4 分钟。

.aspx文件中

 

.aspx.cs文件中

protected void Page_Load(object sender, EventArgs e)    {        if (!IsPostBack)        {            this.txtUser_Id.Focus();            if (!Object.Equals(Request.Cookies["UserID"], null))            {                //创建一个Cookie对象,实现记住用户名                HttpCookie readcookie = Request.Cookies["UserID"];                this.txtUser_Id.Text = readcookie.Value;            }        }    }    private void CreateCookie()    {        //创建一个Cookie对象        HttpCookie cookie = new HttpCookie("UserID");        //判断Checkbox控件是否被选中        if (this.cbxRemeberUser.Checked)        {            //将用户编号存储到创建的Cookie对象中            cookie.Value = this.txtUser_Id.Text;        }        //获取创建的Cookie对象的过期时间        cookie.Expires = DateTime.MaxValue;        //将创建的Cookie对象添加到内部Cookie集合中        Response.AppendCookie(cookie);}    protected void btnInsert_Click(object sender, ImageClickEventArgs e)    {…        if (object.Equals(Request.Cookies["UserID"], null))        {          //调用自定义方法 CreateCookie()存储用户名          CreateCookie();        }        else        {           CreateCookie();        }…}

 

转载于:https://www.cnblogs.com/52net/archive/2012/05/29/2523825.html

你可能感兴趣的文章
Deep Learning Papers
查看>>
Unity MVC框架 StrangeIoC
查看>>
iOS真机UI调试利器——Reveal
查看>>
xlrd读取多个excel电子表数据
查看>>
为什么Word文档无响应,Word文档无响应的解决方法
查看>>
main主函数
查看>>
centos6 安装和配置PHP 7.0
查看>>
使用jQuery写一个简单的轮播图(笔记)
查看>>
什么是Asp.net Core?和 .net core有什么区别?(转)
查看>>
MySql(16)——Spring data jpa mysql 乐观锁 与 AtomicInteger
查看>>
《C程序设计语言》笔记 (三) 控制流
查看>>
Unable to read TLD "META-INF/c.tld" from JAR file
查看>>
freefcw/hustoj Install Guide
查看>>
【Android】Android实现自定义带文字和图片的Button
查看>>
4.7清明考试(完蛋)
查看>>
【1】Zookeeper概述
查看>>
0基础lua学习(十八)C调用Lua----02Lua堆栈
查看>>
DSA——直接插入排序笔记
查看>>
C#中的泛型
查看>>
走进AngularJs(七) 过滤器(filter) - 吕大豹
查看>>