加入收藏 | 设为首页 | 会员中心 | 我要投稿 东莞站长网 (https://www.0769zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > Asp教程 > 正文

Asp.net基于ajax和jquery-ui实现进度条

发布时间:2020-12-10 23:09:54 所属栏目:Asp教程 来源:网络整理
导读:这篇文章主要介绍了Asp.net基于ajax和jquery-ui实现进度条,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

  前台用ajax不停进行查询,直到任务完成。进度条用的是jquery-ui。后台用一般处理程序处理相应,进度信息保存在HttpContext.Application中。

  代码作为简单示例,实际应用时应对资源释放、防止多线程混乱等做进一步控制。

效果图:

  

代码:

前台:

<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <script src="http://www.jb51.net/article/Scripts/jquery-2.1.4.min.js"></script> <script src="http://www.jb51.net/article/Scripts/jquery-ui-1.11.4.min.js"></script> <link href="http://www.jb51.net/article/Content/themes/base/all.css" /> <script type="text/javascript"> function GetProgress() { $.ajax({ url: "/Handler1.ashx", type: "POST", data: { "RequestType": "AjaxRequest", "Method": "GetProgress" }, success: function (data) { if (data != -1) { //工作没有结束,继续查询进度 setTimeout(GetProgress, 100); $("#progress").html(data); $("#progressbar").progressbar({ value: parseInt(data) }); } else { //工作完成 $("#progress").html("done"); $("#progressbar").progressbar({ value: 100 }); $("#btn1").attr("disabled", false); } } }); } function DoWork() { //禁用按钮 $("#btn1").attr("disabled", true); $.ajax({ url: "/Handler1.ashx", type: "POST", data: { "RequestType": "AjaxRequest", "Method": "DoWork" } }); //开始查询进度 setTimeout(GetProgress, 500); } </script> </head> <body> <div> <input type="button" value="开始" /> <label></label> <div></div> </div> </body> </html>

后台:

// 2015年12月16日 09:53:11 // David Huang // 进度条示例 namespace ProgressTest { using System; using System.Threading; using System.Web; /// <summary> /// Handler1 的摘要说明 /// </summary> public class Handler1 : IHttpHandler { // context private HttpContext context; public bool IsReusable { get { return false; } } public void ProcessRequest(HttpContext context) { this.context = context; if (context.Request["RequestType"] == "AjaxRequest") { if (context.Request["Method"] == "GetProgress") { context.Response.Clear(); context.Response.Write(this.GetProgress()); context.Response.End(); } else { this.DoWork(); } } } /// <summary> /// 开始工作 /// </summary> private void DoWork() { for (int i = 0; i < 100; i++) { // 记录进度 // 实际应用中需要进一步控制(利用用户信息、cookies等),防止并发造成混乱 this.context.Application["progress"] = i + 1; Random r = new Random(); Thread.Sleep(r.Next(10, 100)); } // 完成后释放资源 this.context.Application["progress"] = null; } /// <summary> /// 查询进度 /// </summary> /// <returns>进度</returns> private int GetProgress() { if (this.context.Application["progress"] != null) { return (int)this.context.Application["progress"]; } else { return -1; } } } }

(编辑:东莞站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    热点阅读