在ajax-pro中我可以使用自定义类作为代理而不是system.web.ui.page吗?以及如何?

发布于 2024-08-26 04:17:02 字数 108 浏览 8 评论 0 原文

在ajax-pro中我可以使用自定义类作为代理而不是system.web.ui.page吗?以及如何?

基本上我想使用 html 文件与 ajax-pro

感谢您的时间。

In ajax-pro Can I use custom class as proxy instead of system.web.ui.page? and How?

basically I want to use html file with ajax-pro

thanks for your time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

掩饰不了的爱 2024-09-02 04:17:02

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.

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