Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 pagemethods 从 javascript 调用方法,有没有办法从代码隐藏中的方法(标记为静态)访问页面的控件?问题是pagemethod需要加载一个业务实体并加载到页面中,结构复杂。
提前感谢您的帮助。
即使在静态/共享方法中,您也可以访问您的页面。
C#:
(WebForm1)HttpContext.Current.Handler
VB.Net:
DirectCast(HttpContext.Current.Handler, WebForm1)
WebForm1 是您的页面类型。然后,您可以访问所有控件。