内射老阿姨1区2区3区4区_久久精品人人做人人爽电影蜜月_久久国产精品亚洲77777_99精品又大又爽又粗少妇毛片

ASP.NET實(shí)現(xiàn)進(jìn)度條效果的方法是什么

小編給大家分享一下ASP.NET實(shí)現(xiàn)進(jìn)度條效果的方法是什么,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

創(chuàng)新互聯(lián)建站專(zhuān)注為客戶(hù)提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站設(shè)計(jì)、成都網(wǎng)站設(shè)計(jì)、吉木薩爾網(wǎng)絡(luò)推廣、重慶小程序開(kāi)發(fā)公司、吉木薩爾網(wǎng)絡(luò)營(yíng)銷(xiāo)、吉木薩爾企業(yè)策劃、吉木薩爾品牌公關(guān)、搜索引擎seo、人物專(zhuān)訪(fǎng)、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)建站為所有大學(xué)生創(chuàng)業(yè)者提供吉木薩爾建站搭建服務(wù),24小時(shí)服務(wù)熱線(xiàn):18980820575,官方網(wǎng)址:m.rwnh.cn

我們先看下進(jìn)度條效果

ASP.NET實(shí)現(xiàn)進(jìn)度條效果的方法是什么

我點(diǎn)擊了按鈕后他會(huì)顯示進(jìn)度頁(yè)面,進(jìn)度完成后,進(jìn)度條消失,其實(shí)也是比較簡(jiǎn)單的了。

我們需要一個(gè)進(jìn)度條代碼文件ProgressBar.htm(注意:是沒(méi)有head這些標(biāo)簽的)

<script language="javascript">
  function SetPorgressBar(pos) {
    //設(shè)置進(jìn)度條居中

    var screenWidth = document.body.offsetWidth;
    ProgressBarSide.style.width = Math.round(screenWidth / 2) + "px";
    ProgressBarSide.style.left = Math.round(screenWidth / 4) + "px";
    ProgressBarSide.style.top = "50px";
    ProgressBarSide.style.height = "21px";
    ProgressBarSide.style.display = "block";

    //設(shè)置進(jìn)度條百分比 
    ProgressBar.style.width = pos + "%";
    ProgressText.innerHTML = pos + "%";
  }

  function SetMaxValue(maxValue) {
    ProgressBarSide.style.width = maxValue + "px";
  }

  //完成后隱藏進(jìn)度條
  function SetCompleted() {
    ProgressBarSide.style.display = "none";
  }

  function SetTitle(title) {
    ProgressTitle.innerHTML = title;
  }
</script>
<p id="ProgressBarSide" style="position: absolute; height: 21px; width: 100px;
  color: Silver; border-width: 1px; border-style: Solid; display: block">
  <p id="ProgressBar" style="position: absolute; height: 21px; width: 0%; background-color: #1475BB">
  </p>
  <p id="ProgressText" style="position: absolute; height: 21px; width: 100%; text-align: center">
  </p>
  <p id="ProgressTitle" style="position: absolute; height: 21px; top: 21px; width: 100%;
    text-align: center">
  </p>
</p>

然后需要一個(gè)進(jìn)度條類(lèi)ProgressBar.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.IO;

namespace ZhuoYueE.Dop.Web.UI
{
  /// <summary>
  ///顯示進(jìn)度條
  /// </summary>
  public class ProgressBar : System.Web.UI.Page
  {
    /// <summary>
    /// 最大值
    /// </summary>
    private int MaxValue
    {
      get
      {
        if (ViewState["MaxValue"] == null)
        {
          return 0;
        }
        else
        {
          return Convert.ToInt32(ViewState["MaxValue"]);
        }
      }
      set
      {
        ViewState["MaxValue"] = value;
      }
    }
    /// <summary>
    /// 當(dāng)前值
    /// </summary>
    private int ThisValue
    {
      get
      {
        if (ViewState["ThisValue"] == null)
        {
          return 0;
        }
        else
        {
          return Convert.ToInt32(ViewState["ThisValue"]);
        }
      }
      set
      {
        ViewState["ThisValue"] = value;
      }
    }
    /// <summary>
    /// 當(dāng)前頁(yè)面
    /// </summary>
    System.Web.UI.Page m_page;
    /// <summary>
    /// 功能描述:構(gòu)造函數(shù)
    /// 作  者:huangzh
    /// 創(chuàng)建日期:2016-05-06 11:54:34
    /// 任務(wù)編號(hào):
    /// </summary>
    /// <param name="page">當(dāng)前頁(yè)面</param>
    public ProgressBar(System.Web.UI.Page page)
    {
      m_page = page;
    }

    public void SetMaxValue(int intMaxValue)
    {
      MaxValue = intMaxValue;
    }

    /// <summary>
    /// 功能描述:初始化進(jìn)度條
    /// 作  者:huangzh
    /// 創(chuàng)建日期:2016-05-06 11:55:26
    /// 任務(wù)編號(hào):
    /// </summary>
    public void InitProgress()
    {
      //根據(jù)ProgressBar.htm顯示進(jìn)度條界面
      string templateFileName = AppDomain.CurrentDomain.BaseDirectory + "ProgressBar.htm";
      StreamReader reader = new StreamReader(@templateFileName, System.Text.Encoding.GetEncoding("GB2312"));
      string strhtml = reader.ReadToEnd();
      reader.Close();
      m_page.Response.Write(strhtml);
      m_page.Response.Flush();
    }

    /// <summary>
    /// 功能描述:設(shè)置標(biāo)題
    /// 作  者:huangzh
    /// 創(chuàng)建日期:2016-05-06 11:55:36
    /// 任務(wù)編號(hào):
    /// </summary>
    /// <param name="strTitle">strTitle</param>
    public void SetTitle(string strTitle)
    {
      string strjsBlock = "<script>SetTitle('" + strTitle + "'); </script>";

      m_page.Response.Write(strjsBlock);
      m_page.Response.Flush();
    }

    /// <summary>
    /// 功能描述:設(shè)置進(jìn)度
    /// 作  者:huangzh
    /// 創(chuàng)建日期:2016-05-06 11:55:45
    /// 任務(wù)編號(hào):
    /// </summary>
    /// <param name="percent">percent</param>
    public void AddProgress(int intpercent)
    {
      ThisValue = ThisValue + intpercent;
      double dblstep = ((double)ThisValue / (double)MaxValue) * 100;

      string strjsBlock = "<script>SetPorgressBar('" + dblstep.ToString("0.00") + "'); </script>";

      m_page.Response.Write(strjsBlock);
      m_page.Response.Flush();
    }


    public void DisponseProgress()
    {
      string strjsBlock = "<script>SetCompleted();</script>";
      m_page.Response.Write(strjsBlock);
      m_page.Response.Flush();
    }
  }
}

然后就是調(diào)用方法了,調(diào)用很簡(jiǎn)單,在頁(yè)面的按鈕事件或者其他什么地方加入代碼,如在按鈕事件里這么用

protected void btnImport_Click(object sender, EventArgs e)
    {
      ProgressBar pb = new ProgressBar(this);
      pb.SetMaxValue(110);
      pb.InitProgress();
      pb.SetTitle("這是一個(gè)測(cè)試數(shù)據(jù)");
      for (int i = 1; i <= 110; i++)
      {
        pb.AddProgress(1);
        //此處用線(xiàn)程休眠代替實(shí)際的操作,如加載數(shù)據(jù)等
        System.Threading.Thread.Sleep(50);
      }
      pb.DisponseProgress();
    }

怎么樣,是不是很簡(jiǎn)單呢。

以上是ASP.NET實(shí)現(xiàn)進(jìn)度條效果的方法是什么的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!

新聞標(biāo)題:ASP.NET實(shí)現(xiàn)進(jìn)度條效果的方法是什么
標(biāo)題鏈接:http://m.rwnh.cn/article2/igjeoc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內(nèi)鏈、靜態(tài)網(wǎng)站關(guān)鍵詞優(yōu)化、品牌網(wǎng)站制作、搜索引擎優(yōu)化

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都定制網(wǎng)站網(wǎng)頁(yè)設(shè)計(jì)
大洼县| 扎囊县| 思茅市| 通道| 蒲城县| 翁牛特旗| 江山市| 玛多县| 疏勒县| 邵阳市| 普定县| 綦江县| 鸡西市| 镇坪县| 娄烦县| 庆城县| 北京市| 缙云县| 河津市| 都江堰市| 延长县| 贡嘎县| 秀山| 凭祥市| 夹江县| 弥勒县| 和平区| 三河市| 团风县| 铁岭市| 阿荣旗| 河南省| 东丰县| 岢岚县| 玛曲县| 沿河| 太和县| 伊宁县| 榕江县| 漠河县| 余庆县|