在ajax-pro中我可以使用自定义类作为代理而不是system.web.ui.page吗?以及如何?
在ajax-pro中我可以使用自定义类作为代理而不是system.web.ui.page吗?以及如何?
基本上我想使用 html 文件与 ajax-pro
感谢您的时间。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Ajax-Pro 不是这样工作的,它通过服务器端处理程序和页面方法来工作。由于 HTML 是静态的,它无法在服务器上执行任何操作,因此您需要某种服务器后端来支持 AJAX(除非加载的其余内容也是静态的,在这种情况下您只需要一个客户端 JavaScript 库或手动滚动 AJAX 的 JavaScript)。
如果您想要静态 HTML 和动态 AJAX 内容,我会查看 jQuery 和 Web 服务来完成此任务,但要知道有许多解决方案,而不仅仅是 jQuery。
要回答这个问题,是的,它可以,只要该类在某个时候继承自
Page
...但是不行,您不能将它与您描述的通用 HTML 文件一起使用。Ajax-Pro doesn't work this way, it does it's work via a server-side handler and page methods. Since HTML is static, it can't execute anything on the server, you need some sort of server back-end to support AJAX (unless the rest of the loaded content is also static, in which case you only need a client JavaScript library or hand-roll the JavaScript for AJAX).
If you want static HTML and dynamic AJAX content, I'd look at jQuery and Web Services to accomplish this, but know that there are many solutions out there, not just jQuery.
To answer the question, yes it can, as long as that class inherits from
Page
at some point...but no, you can't use it with a generic HTML file like you describe.