我正在使用John Culviner的jquery.filedownload插件。
为了工作,我需要写一个cookie。如何在静态web方法中编写cookie?作为Page。 Response是一个实例字段,我无法从静态方法访问它。
答案 0 :(得分:7)
var myCookie = new HttpCookie("CookieName");
myCookie["key"] = "val";
HttpContext.Current.Response.Cookies.Add(myCookie);
答案 1 :(得分:5)
在HttpContext.Current
。{/ p>中使用WebMethod
属性
答案 2 :(得分:1)
HttpContext.Current.Response.Cookies.Get("CookieName");
答案 3 :(得分:1)
使用ff:code:
HttpCookie objHTTPCk = HttpContext.Current.Request.Cookies.Get("Cookie name");