PageMethods 和页面控件参考
我正在使用 pagemethods 从 javascript 调用方法,有没有办法从代码隐藏中的方法(标记为静态)访问页面的控件?问题是pagemethod需要加载一个业务实体并加载到页面上,结构比较复杂。
预先感谢您的任何帮助。
I'm using pagemethods to call a method from javascript, is there a way to access the page's controls from the method in codebehind (marked as static)? The problem is that the pagemethod nedds to load a business entity and load it to the page, and the structure is complex.
Thanks in advance for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
即使在静态/共享方法中,您也可以访问您的页面。
C#:
VB.Net:
其中 WebForm1 是您的页面类型。然后您就可以访问所有控件。
Even in a static/shared method you can access your page.
C#:
VB.Net:
Where WebForm1 is your page-type. Then you can access all your controls.