内容简介:翻译自:https://stackoverflow.com/questions/7309148/access-viewstate-from-static-method-in-aspx-page
[WebMethod] public static string GetData(int CustomerID) { string outputToReturn = ""; ViewState["MyVal"]="Hello"; return outputToReturn; }
Control.ViewState
受到保护,您无法访问它(不使用反射),而不是可通过HttpContext.Current.Session访问的Session.
因此,要么不使用静态方法,请使用Session或使用此反射方法:
public static string CustomerId { get { return (string)GetCurrentPageViewState()["CustomerId"]; } set { GetCurrentPageViewState()["CustomerId"] = value; } } public static System.Web.UI.StateBag GetCurrentPageViewState() { Page page = HttpContext.Current.Handler as Page; var viewStateProp = page?.GetType().GetProperty("ViewState", BindingFlags.FlattenHierarchy | BindingFlags.Instance | BindingFlags.NonPublic); return (System.Web.UI.StateBag) viewStateProp?.GetValue(page); }
但是,如果通过WebService调用,则无效,因为它超出了 Page-Lifecycle .
翻译自:https://stackoverflow.com/questions/7309148/access-viewstate-from-static-method-in-aspx-page
以上所述就是小编给大家介绍的《asp.net – 从aspx页面中的Static方法访问ViewState》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- vue页面跳转后返回原页面初始位置方法
- Vue 页面状态保持页面间数据传输的一种方法
- JSP页面跳转方法大全
- 移动端所有浏览器页面调试方法
- ajax跳转到新的jsp页面的方法
- 你知道 JavaScript 有 535 种方法刷新页面吗?
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Web Development Recipes
Brian P. Hogan、Chris Warren、Mike Weber、Chris Johnson、Aaron Godin / Pragmatic Bookshelf / 2012-1-22 / USD 35.00
You'll see a full spectrum of cutting-edge web development techniques, from UI and eye candy recipes to solutions for data analysis, testing, and web hosting. Make buttons and content stand out with s......一起来看看 《Web Development Recipes》 这本书的介绍吧!