使用 jQuery/C# 异步从 SQL 分配 jQuery 进度条值
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了实时更新进度条,您必须异步调用服务器来检查数据。这是使用 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/