博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Cookie application session
阅读量:6199 次
发布时间:2019-06-21

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

•Application 对象是存储于服务器的全局变量
•Cookie 存储信息于客户端
•Session 对象用于在服务器端存储用户的信息,在用户结束会话时被清除

 

 

 

1.将信息写入Cookies 中/

方式一

//HttpCookie hcName = new HttpCookie("UserName", this.txtName.Text);
//HttpCookie hcPwd = new HttpCookie("UserPwd", this.txtPassword.Text);
//hcName.Expires = DateTime.Now.AddDays(double.Parse(this.ddlDays.SelectedValue));
//hcPwd.Expires = DateTime.Now.AddDays(double.Parse(this.ddlDays.SelectedValue));

//this.Response.Cookies.Add(hcName);

//this.Response.Cookies.Add(hcPwd);

 

读取

HttpCookie hcPwd = this.Request.Cookies["UserPwd"];

string s = "";
s = hcPwd.Value;

 

方式二

HttpCookie hc = new HttpCookie("User");

hc.Values.Add("name", this.txtName.Text.Trim());
hc.Values.Add("pwd", this.txtPassword.Text.Trim());
hc.Expires = DateTime.Now.AddDays(double.Parse(this.ddlDays.SelectedValue));
//将cookie对象写入客户端
this.Response.Cookies.Add(hc);

读取

HttpCookie hc = this.Request.Cookies["User"];

string s = "";

if (hc != null)

{
s += "从Cookies中读取的姓名是:" + hc.Values["name"].ToString() + "<br/>读取的密码是:" + hc.Values["pwd"].ToString();
}
else
{
s += "没有Cookie对象!";
}

 

2 删除cookie

 

转载地址:http://rbjca.baihongyu.com/

你可能感兴趣的文章
Python3.6 Schedule模块定时任务
查看>>
SQL Server 函数 LEN 与 DATALENGTH的区别
查看>>
PHP管道与读取进程数据
查看>>
Spring MVC的工作原理和机制
查看>>
cto职责
查看>>
Mysql InnoDB事务
查看>>
92.bower 需要git
查看>>
spring-boot整合ehcache实现缓存机制
查看>>
SqlServer 可更新订阅升级字段队列数据丢失原因
查看>>
KVM工具libvirt、virsh、virt-manager的简单介绍
查看>>
windows默认共享的打开和关闭?
查看>>
(转)Marathon健康检查
查看>>
SharePoint 删除废弃站点步骤
查看>>
Laravel学习笔记之Session源码解析(中)
查看>>
一些细节记录
查看>>
JSON.stringify()
查看>>
softmax_loss.cu 和 softmax_loss.cpp源码
查看>>
js 历史
查看>>
DDR4中的so-dimm 和component
查看>>
etl的表输入时精度问题
查看>>