从代码背后改变过程值?

时间:2012-06-08 10:43:27

标签: asp.net ajax percentage

我使用ASP.NET

我想在数据库工作时从代码隐藏中向用户显示百分比。

我认为问题就在这里,当我从cs percentege调用这个函数时,工作很精细!

  protected void btnUpdate_Click(object sender, EventArgs e)
  {
        System.Threading.Thread.Sleep(5000);
  }

但我真正的代码是连接数据库并插入300 - 1000行! 当它工作时,服务器光标图标变为忙图标,因此它冻结,我无法设置我的百分比值。

Plz帮助......

我有一个网络服务:

    public double CommittedCount = 0;

    [WebMethod]
    public string ShowPercentage()
    {
        return ((CommittedCount / FinishCount) * 100 ).ToString();
    }

    [WebMethod]
    public void SetCommittedCount(double committedCount)
    {
        CommittedCount = committedCount;
    }


    public double FinishCount
    {
        get
        {
                if(Glob.ExcelDataSet.Tables[0].Rows.Count > 0)
                    return Glob.ExcelDataSet.Tables[0].Rows.Count;
                return 1;

        }
    }

我有一个ajaxcall功能:

function updateProgress() {
        $.ajax({
            type: "POST",
            url: '<%=ResolveUrl("~/processCalculator.asmx/ShowPercentage") %>',
            data: "{}",
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            async: true,
            success: function (msg) {
                // TODO: revert the line below in your actual code
                //$("#progressbar").progressbar("option", "value", msg.d);
                $(".percentage").text(msg.d);
                if (msg.d < 100) {
                    setTimeout(updateProgress, 100);
                }
            }
        });

    }

我调用了updateProgress按钮onclick:

<asp:Button Text="Sorgula" ID="btnAction" class="button_action" OnClick="Action_Click" Width="80px" runat="server" />

        $(".button_action").click(function () {
            var action_ = $(this).attr("value");
            var ExcelRowCount = $('#<%=ExcelActionsIsAvaibleRowCount.ClientID %>').val();
            if (ExcelRowCount != "") {
                if (confirm(ExcelRowCount + " kayıt için [" + action_ + "] aksiyonu gerçekleştirilecek?")) {
                    setTimeout(updateProgress, 100);
                    return true;
                }
                else 
                {
                    return false;
                }
            }
        });

我的Cs行动守则     protected void btnAction_Click(object sender,EventArgs e)    {

...
...
for (int rowIndex = 1; rowIndex < Glob.ExcelDataSet.Tables[0].Rows.Count; rowIndex++)
{
   ...     
   ...                

   aksiyon_sonucu_ = action.InsertRow(
   Glob.ExcelDataSet.Tables[0].Rows[rowIndex], DegistirilebilirKolonlar, true);

  // my persentage
  processCalculater pCal = new processCalculater();
  pCal.SetCommittedCount(rowIndex);

  ...
  ...

}

1 个答案:

答案 0 :(得分:1)

您需要使用PageAsyncTask(或其他一些多线程)。

以下是有关MSDN使用情况的文章,该文章还有一个显示进度指示器的示例。

http://msdn.microsoft.com/en-us/library/system.web.ui.pageasynctask.aspx

多线程的其他选项是:

ThreadPool.QueueUserWorkItem(s => System.Threading.Thread.Sleep(5000))

new Thread(() => System.Threading.Thread.Sleep(5000)){ IsBackground = true }.Start() 

我们的想法是将您长时间运行的任务放入后台线程(使用上述任何技术)。通过您的上下文(会话)来保存您的进度。然后使用AJAX和WebMethod,您可以访问会话数据并显示后台线程的进度。