刷新数据无需重新加载

发布于 2024-12-08 07:08:03 字数 72 浏览 1 评论 0原文

我想刷新 ASP.NET 中的数据而不重新加载页面。 如果可以的话我不想使用AJAX。

我显然对 .NET 感兴趣

I want to refresh data in ASP.NET without reloading page.
If it is possible I don't want to use AJAX.

I am interesting in clearly .NET

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

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

发布评论

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

评论(3

玻璃人 2024-12-15 07:08:03

尝试 PokeIn ASP.NET 的 Comet 实现

您还可以使用 SignalR 由微软官方支持。

Try PokeIn a Comet implementation for ASP.NET

You can also use SignalR which is officially supported by Microsoft.

檐上三寸雪 2024-12-15 07:08:03

如果您不想使用 AJAX,您可以使用 JQuery 执行异步 Http 请求并仅刷新您感兴趣的页面部分(部分渲染)。

http://api.jquery.com/jQuery.get/

http://api.jquery.com/jQuery.post/

您无法在不使用的情况下刷新页面的一部分任何客户端框架(很多年前,当时 JQuery 还没有出来,JavaScript 还没有出现)以前我们使用 IFrame 来实现这一点,但今天会很糟糕)

If you don't want to use AJAX you can use JQuery to do an Async Http request and refresh only the portion of the page you are interested in (Partial Rendering).

http://api.jquery.com/jQuery.get/

http://api.jquery.com/jQuery.post/

you can't refresh a portion of the page without using any client side framework (lots of years ago when JQuery was not out yet and JavaScript was not used we were using IFrame to achieve that but today would be really bad)

虚拟世界 2024-12-15 07:08:03

您可以使用 UpdatePanel 刷新数据。

http://ajax.net-tutorials.com/controls/updatepanel-control/

You can use UpdatePanel to refresh your data.

http://ajax.net-tutorials.com/controls/updatepanel-control/

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