5

有谁知道如何使用 aspx.cs 页面中的 [WebMethod] 属性在静态方法中访问 HttpRequest.Cookies?

它不会让我这样做,因为方法是静态的。

[WebMethod]
public static bool PostToTwitter(string identityUrl, string message, bool autoFollow)
{
  Page.Request.Cookies -- object reference is required for non-static field

谢谢!

4

1 回答 1

14

采用,

HttpContext.Current.Request.Cookies
于 2009-09-10T02:00:46.623 回答