w
如图所示  我要怎么取这个cookies?我 var cookies = document.cookie;
                    alert(cookies);
这么写貌似没东西~~~                var timestart = context.Request["start"].ToString();
                var timeend = context.Request["end"].ToString();
                string strJson = request(sport, page, rows, timestart, timeend);
                string cookiename = timestart+";"+timeend+";"+page+";"+rows+";"+spot;                HttpCookie cookie = new HttpCookie(cookiename);
                cookie.Expires.AddMinutes(2);                cookie.Value = strJson;
                context.Response.Cookies.Add(cookie);这是我设置cookies的代码  第一次写~~    代码上有啥问题尽量提哈~~Cookiejs asp.net