使用 jQuery/C# 异步从 SQL 分配 jQuery 进度条值

发布于 2024-12-07 03:41:04 字数 138 浏览 0 评论 0原文

我有一个 SQL 服务器,它执行后端功能,用进度百分比更新表上的字段。我想有效地动态更新进度条的值。

该网页是一个 C# .aspx 页面,进度条是使用 jQuery-UI 创建的。

这样做的最佳方法是什么?

谢谢

I have a SQL server that does a back-end function that updates a field on a table with progress-percentage. I would like to efficiently update the value of the progressbar dynamically.

The webpage is a C# .aspx page and the progressbar is created using jQuery-UI.

What is the best method for doing so?

Thanks

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

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

发布评论

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

评论(1

笑,眼淚并存 2024-12-14 03:41:04

为了实时更新进度条,您必须异步调用服务器来检查数据。这是使用 AJAX 完成的。使用 AJAX 可以通过多种方式实现(例如 JS 代码、AJAXControlToolkit 等)。您必须决定哪个是最适合您的选择。

AJAX 维基:http://en.wikipedia.org/wiki/Ajax_(programming)

ASP.NET AJAX 教程:http://www.aspnettutorials.com/tutorials/ajax/

AJAXControlToolkit:http://www.asp.net/ajaxlibrary/AjaxControlToolkitSampleSite/

AJAX w/ jQuery: http://net.tutsplus。 com/tutorials/javascript-ajax/5-ways-to-make-ajax-calls-with-jquery/

In order you update the progress bar in real time you have to make asynchronous calls to the server to check the data. This is done using AJAX. There are many ways to do it using AJAX (ex. JS code, AJAXControlToolkit, etc). You'll have to decide which is the best option for you.

AJAX Wiki: http://en.wikipedia.org/wiki/Ajax_(programming)

ASP.NET AJAX Tutorials: http://www.aspnettutorials.com/tutorials/ajax/

AJAXControlToolkit: http://www.asp.net/ajaxlibrary/AjaxControlToolkitSampleSite/

AJAX w/ jQuery: http://net.tutsplus.com/tutorials/javascript-ajax/5-ways-to-make-ajax-calls-with-jquery/

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