有谁知道如何使用 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
谢谢!