为了账号安全,请及时绑定邮箱和手机立即绑定

请问在asp.net 中一般处理程序 怎么获取 cookie?

请问在asp.net 中一般处理程序 怎么获取 cookie?

慕仙森 2019-08-17 11:11:26
asp.net 一般处理程序 怎么获取 cookie
查看完整描述

5 回答

?
千万里不及你

TA贡献1784条经验 获得超9个赞

不都一样么?

使用方法都是一样的。没有差别。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

public void ProcessRequest (HttpContext context) {

        context.Response.ContentType = "text/plain";

        context.Response.Write("Hello World");

 

        HttpCookie cookie = new HttpCookie("Test");//初使化并设置Cookie的名称

         

        TimeSpan ts = new TimeSpan(0, 0, 1, 0, 0);//过期时间为1分钟

        cookie.Expires = DateTime.Now.Add(ts);//设置过期时间

        cookie.Values.Add("userid", "123456");

        cookie.Values.Add("test", "THIS_IS_TEST");

        context.Response.AppendCookie(cookie);

 

        context.Response.Write(context.Request.Cookies["Test"].Value);

    }




查看完整回答
反对 回复 2019-08-18
?
MM们

TA贡献1886条经验 获得超2个赞

HttpCookie cookie = HttpContext.Current.Request.Cookies["info"];
// cookie = null;
if (cookie == null )
{
cookie = new HttpCookie("Info");
cookie["CityID"] = HttpContext.Current.Server.UrlEncode(cityID);
cookie["CityName"] = HttpContext.Current.Server.UrlEncode(CityName);
cookie.Expires = DateTime.Now.AddDays(10);//
HttpContext.Current.Response.Cookies.Add(cookie);
}else{
//直接读值,注意编码 解码、不然汉字会出现乱码。
}



查看完整回答
反对 回复 2019-08-18
?
哆啦的时光机

TA贡献1779条经验 获得超6个赞

.net的一般处理程序 .ashx的context对象默认是取不出session的值出来的。
要达到取出Session的效果,则需要让它实现System.Web.SessionState.IReadOnlySessionState接口(该接口没有任何方法实现,只是起到一个标识作用)

为了让所有的一般处理程序都能获取到Session值,并且能集中做一些控制管理(比如用户认证、权限控制等),我的策略是让一个抽象类实现IHttpHandler, IRequiresSessionState接口,然后让其他所有一般处理程序都继承该抽象类即可。



查看完整回答
反对 回复 2019-08-18
  • 5 回答
  • 0 关注
  • 298 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信