ASP.NET利用多線程客戶端執(zhí)行進(jìn)度的示例(2)

2010-08-28 10:50:35來(lái)源:西部e網(wǎng)作者:

對(duì)上一次的做一點(diǎn)修改,增加一個(gè)比較美觀的進(jìn)度顯示

csdn_article001.jpg
上面那個(gè)是運(yùn)行中的畫面,下面那個(gè)是結(jié)束后的畫面
csdn_article002.jpg
用到的圖標(biāo)在這里:clocks.gif

對(duì)上次的前臺(tái)修改如下:

<%@ Page language="c#" Codebehind="WebForm54.aspx.cs" AutoEventWireup="false" Inherits="csdn.WebForm54" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
 <HEAD>
  <title>WebForm54</title>
  <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
  <meta content="C#" name="CODE_LANGUAGE">
  <meta content="JavaScript" name="vs_defaultClientScript">
  <meta content="
http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
  <style type="text/css">
  .font { FONT-WEIGHT: normal; FONT-SIZE: 9pt; COLOR: #000000; FONT-FAMILY: "宋體", sans-serif; BACKGROUND-COLOR: #f0f0f0; TEXT-DECORATION: none }
  </style>
 </HEAD>
 <body>
  <form id="Form1" method="post" runat="server">
   <div id="div_load" runat="server">
    <table width="320" height="72" border="1" bordercolor="#cccccc" cellpadding="5" cellspacing="1"
     class="font" style="FILTER: Alpha(opacity=80); WIDTH: 320px; HEIGHT: 72px">
     <TR>
      <TD>
       <P><IMG alt="請(qǐng)等待" src="clocks.gif" align="left">
        <BR>
        <asp:Label id="lab_state" runat="server"></asp:Label></P>
      </TD>
     </TR>
    </table>
    <BR>
   </div>
   <asp:Button id="btn_startwork" runat="server" Text="運(yùn)行一個(gè)長(zhǎng)時(shí)間的任務(wù)"></asp:Button><BR>
   <BR>
   <asp:Label id="lab_jg" runat="server"></asp:Label>
  </form>
 </body>
</HTML>

后臺(tái)修改如下:

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace csdn
{
 /// <summary>
 /// WebForm54 的摘要說(shuō)明。
 /// </summary>
 public class WebForm54 : System.Web.UI.Page
 {
  protected System.Web.UI.HtmlControls.HtmlGenericControl div_load;
  protected System.Web.UI.WebControls.Button btn_startwork;
  protected System.Web.UI.WebControls.Label lab_state;
  protected System.Web.UI.WebControls.Label lab_jg;
  protected work w;

  private void Page_Load(object sender, System.EventArgs e)
  {
   // 在此處放置用戶代碼以初始化頁(yè)面
   if(Session["work"]==null)
   {
    w=new work();
    Session["work"]=w;
   }
   else
   {
    w=(work)Session["work"];
   }
   switch(w.State)
   {
    case 0:
    {
     this.div_load.Visible=false;
     break;
    }
    case 1:
    {
     this.lab_state.Text=""+((TimeSpan)(DateTime.Now-w.StartTime)).TotalSeconds.ToString("0.00")+" 秒過(guò)去了,完成百分比:"+w.Percent+" %";
     this.btn_startwork.Enabled=false;
     Page.RegisterStartupScript("","<script>window.setTimeout('location.href=location.href',1000);</script>");
     this.lab_jg.Text="";
     break;
    }
    case 2:
    {
     this.lab_jg.Text="任務(wù)結(jié)束,并且成功執(zhí)行所有操作,用時(shí) "+((TimeSpan)(w.FinishTime-w.StartTime)).TotalSeconds+" 秒";
     this.btn_startwork.Enabled=true;
     this.div_load.Visible=false;
     break;
    }
    case 3:
    {
     this.lab_jg.Text="任務(wù)結(jié)束,在"+((TimeSpan)(w.ErrorTime-w.StartTime)).TotalSeconds+"秒的時(shí)候發(fā)生錯(cuò)誤導(dǎo)致任務(wù)失敗'";
     this.btn_startwork.Enabled=true;
     this.div_load.Visible=false;
     break;
    }
   }
  }

  #region Web 窗體設(shè)計(jì)器生成的代碼
  override protected void OnInit(EventArgs e)
  {
   //
   // CODEGEN: 該調(diào)用是 ASP.NET Web 窗體設(shè)計(jì)器所必需的。
   //
   InitializeComponent();
   base.OnInit(e);
  }
  
  /// <summary>
  /// 設(shè)計(jì)器支持所需的方法 - 不要使用代碼編輯器修改
  /// 此方法的內(nèi)容。
  /// </summary>
  private void InitializeComponent()
  {   
   this.btn_startwork.Click += new System.EventHandler(this.btn_startwork_Click);
   this.Load += new System.EventHandler(this.Page_Load);

  }
  #endregion

  private void btn_startwork_Click(object sender, System.EventArgs e)
  {
   if(w.State!=1)
   {
    this.btn_startwork.Enabled=false;
    this.div_load.Visible=true;
    w.runwork();
    Page.RegisterStartupScript("","<script>location.href=location.href;</script>");
            
   }
  }
 }

 public class work
 {
  public int State=0;//0-沒(méi)有開(kāi)始,1-正在運(yùn)行,2-成功結(jié)束,3-失敗結(jié)束
  public int Percent=0;//完成百分比
  public DateTime StartTime;
  public DateTime FinishTime;
  public DateTime ErrorTime;

  public void runwork()
  {
   lock(this)
   {
    if(State!=1)
    {
     State=1;
     StartTime=DateTime.Now;
     System.Threading.Thread thread=new System.Threading.Thread(new System.Threading.ThreadStart(dowork));
     thread.Start();                        
    }
   }
  }

  private void dowork()
  {
   try
   {
    SqlConnection conn=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["conn"]);
    SqlCommand cmd=new SqlCommand("Insert Into test (test)values('test')",conn);
    conn.Open();
    for(int p=0;p<100;p++)
    {
     for(int i=0;i<10;i++)
     {
      cmd.ExecuteNonQuery();
     }
     Percent=p;//這里就是定義百分比,你估計(jì)這個(gè)操作費(fèi)多少時(shí)間定義多少百分比
    }
    conn.Close();
    //以上代碼執(zhí)行一個(gè)比較消耗時(shí)間的數(shù)據(jù)庫(kù)操作
    State=2;
   }
   catch
   {
    ErrorTime=DateTime.Now;
    Percent=0;
    State=3;
   }
   finally
   {
    FinishTime=DateTime.Now;
    Percent=0;
   }
  }
 }
}

原文:http://lovecherry.cnblogs.com/archive/2005/04/10/135090.html

關(guān)鍵詞:ASP.NET