如何在静态web方法中编写cookie

时间:2012-12-19 08:32:12

标签: c# asp.net cookies static-methods

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

为了工作,我需要写一个cookie。如何在静态web方法中编写cookie?作为Page。 Response是一个实例字段,我无法从静态方法访问它。

4 个答案:

答案 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");