我正在使用John Culviner的jquery.filedownload插件。如何在靜態webmethod中寫入cookie
爲了這個工作,我需要寫一個cookie。如何從靜態webmethod中寫入cookie?作爲頁面。響應是一個實例字段,我無法從靜態方法訪問它。
我正在使用John Culviner的jquery.filedownload插件。如何在靜態webmethod中寫入cookie
爲了這個工作,我需要寫一個cookie。如何從靜態webmethod中寫入cookie?作爲頁面。響應是一個實例字段,我無法從靜態方法訪問它。
使用HttpContext.Current
屬性在您的WebMethod
。
var myCookie = new HttpCookie("CookieName");
myCookie["key"] = "val";
HttpContext.Current.Response.Cookies.Add(myCookie);
HttpContext.Current.Response.Cookies.Get("CookieName");
使用FF:代碼:
HttpCookie objHTTPCk = HttpContext.Current.Request.Cookies.Get("Cookie name");