3

我正在使用 John Culviner 的jquery.filedownload 插件。

为此,我需要编写一个 cookie。如何从静态网络方法中编写 cookie?作为页面。响应是一个实例字段,我无法从静态方法访问它。

4

4 回答 4

7
var myCookie = new HttpCookie("CookieName");
myCookie["key"] = "val";

HttpContext.Current.Response.Cookies.Add(myCookie);
于 2012-12-19T08:38:04.083 回答
5

HttpContext.Current您的WebMethod.

于 2012-12-19T08:37:56.137 回答
1
HttpContext.Current.Response.Cookies.Get("CookieName");
于 2012-12-19T08:38:04.417 回答
1

使用 ff: 代码:

HttpCookie objHTTPCk = HttpContext.Current.Request.Cookies.Get("Cookie name");
于 2012-12-19T08:40:58.147 回答