刷新数据无需重新加载
我想刷新 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试 PokeIn ASP.NET 的 Comet 实现
您还可以使用 SignalR 由微软官方支持。
Try PokeIn a Comet implementation for ASP.NET
You can also use SignalR which is officially supported by Microsoft.
如果您不想使用 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)
您可以使用
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/