我可以在同一页面上同时使用 WebMethods *和* ASP.net UpdatePanel 吗?
我有一个带有两种 Web 方法的 ASP.net 页面。一切工作正常,直到我尝试添加 ASP.net UpdatePanel。 UpdatePanel 可以工作,但现在我无法调用我的 Web 方法。它们失败并返回以下错误: "Message":" is not a valid valid for Int16..."
我可以在 Web 方法的第一行放置一个断点,但它不会打;这告诉我错误是从哪里来的。
无论如何,在同一页面上使用 Web 方法和 UpdatePanel 实用吗?
I have an ASP.net page with two web methods. Everything worked fine until I tried to add an ASP.net UpdatePanel. The UpdatePanel works, but now I can't call my web methods. They fail and return the following error: "Message":" is not a valid valid for Int16..."
I can place a breakpoint on the first line of my web method and it won't be hit; so that tells me something about where the error is coming from.
Anyhow, is it practical to use web methods and UpdatePanels on the same page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我必须向那些到目前为止阅读过我的问题的人道歉。我发现了一个微妙的错误,在添加 ASP.net UpdatePanel 的同时引入到我的代码中。
通常,我会删除我的问题,但由于之前没有提出过这个问题,我将回答我自己的问题:
是的,可以同时使用
UpdatePanel
和WebMethod 在同一页面内
...对于其他想知道的人。
Okay, I must apologize to those who have read my question so far. I discovered a subtle bug that I introduced into my code at the same time I added the ASP.net UpdatePanel.
Normally, I would just delete my question, but since the question has not been previously asked, I'm going to answer my own question:
Yes it's possible to use both
UpdatePanel
andWebMethod
within the same page... for anyone else who wants to know.