如何使用jquery调用用户控件中的pagemethod?
我有一个具有 pagemethod
的用户控件。
我想使用 jquery 的 ajax()
方法从我的页面调用此 pagemethod?
我怎样才能做到这一点?
谢谢,
西德
I have a user control having a pagemethod
.
I want to call this pagemethod from my page using jquery's ajax()
method?
How can I do that?
Thanks,
Syd
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您不能在用户控件上使用PageMethods。它们必须出现在页面上。
You cannot have PageMethods on user controls. They have to be on the page.
用这个
Use this
页面方法必须是 static 和 public ,还需要用 WebMethod 属性修饰,例如:
A page method must be static and public , it also need to be decorated with the WebMethod attribute, for example: