摘要: ASP.NET相关技术交流群 205914059//写入cookie Bkey D值 E过期时间(分钟)function WriteCookie(B, D, E) { //设置cookie var C = B + "=" + escape(D) + ";"; if (E > 0) { var A = new Date(); A.setTime(A.getTime() + E * 60 * 1000); C = C + "expires=" + A.toGMTString() + "; path=/;" } d 阅读全文
posted @ 2013-05-09 10:00 zhaosazi77 阅读(250) 评论(0) 推荐(0) 编辑