摘要:
/////////////////////////////读取/////////////////////////////// //获得此cookie对象 HttpCookie cookie = Request.Cookies["demo"]; //检验Cookie是否已经存在 if (null == cookie) { Response.Write("Cookie not found. <br><hr>"); } else { //显示Cookie的值 String strCookieValue = cookie.Value.To 阅读全文