如何将aspx.cs页面中无法访问的Page.Request ASP.NET Webmethod改写为长尾词?
- 内容介绍
- 文章标签
- 相关推荐
本文共计141个文字,预计阅读时间需要1分钟。
有没人知道如何使用asp.net页面中的[WebMethod]属性访问静态方法中的HttpRequest.Cookies?我不会这样做,因为方法是静态的。+ [WebMethod] public static bool PostToTwitter(string identityUrl, string message)
有没有人知道如何使用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
谢谢!
使用,HttpContext.Current.Request.Cookies
本文共计141个文字,预计阅读时间需要1分钟。
有没人知道如何使用asp.net页面中的[WebMethod]属性访问静态方法中的HttpRequest.Cookies?我不会这样做,因为方法是静态的。+ [WebMethod] public static bool PostToTwitter(string identityUrl, string message)
有没有人知道如何使用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
谢谢!
使用,HttpContext.Current.Request.Cookies

