5 回答
TA贡献1783条经验 获得超4个赞
不都一样么?
使用方法都是一样的。没有差别。
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); } |
TA贡献1811条经验 获得超4个赞
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{
//直接读值,注意编码 解码、不然汉字会出现乱码。
}
TA贡献1772条经验 获得超8个赞
.net的一般处理程序 .ashx的context对象默认是取不出session的值出来的。
要达到取出Session的效果,则需要让它实现System.Web.SessionState.IReadOnlySessionState接口(该接口没有任何方法实现,只是起到一个标识作用)
为了让所有的一般处理程序都能获取到Session值,并且能集中做一些控制管理(比如用户认证、权限控制等),我的策略是让一个抽象类实现IHttpHandler, IRequiresSessionState接口,然后让其他所有一般处理程序都继承该抽象类即可。
添加回答
举报