PageMethods 和页面控件参考

发布于 2024-09-09 03:06:22 字数 130 浏览 3 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千年*琉璃梦 2024-09-16 03:06:22

即使在静态/共享方法中,您也可以访问您的页面。

C#:

(WebForm1)HttpContext.Current.Handler

VB.Net:

DirectCast(HttpContext.Current.Handler, WebForm1)

其中 WebForm1 是您的页面类型。然后您就可以访问所有控件。

Even in a static/shared method you can access your page.

C#:

(WebForm1)HttpContext.Current.Handler

VB.Net:

DirectCast(HttpContext.Current.Handler, WebForm1)

Where WebForm1 is your page-type. Then you can access all your controls.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文