1

aspx ページに送信ボタンがあります。ボタンの「クリック」イベントは、「.txt」ファイルの解析を実行し、結果をテーブルに保存して、ページを別のページにリダイレクトします。問題は、解析に約 1.5 分かかることです。進行状況バーとタイマーを実装する必要があります。これは、操作の完了までの残り時間を示します。これには、データベース操作を完了するのに必要な時間の計算が含まれます。この値をタイマーに割り当てます。これを実装するのを手伝ってくれる人はいますか?

4

1 に答える 1

0

このコードを試すことができます (Ajax : UpdatePanel + UpdateProgress)

<form id="form1" runat="server">
        <asp:ScriptManager ID="ScriptManager1" runat="server" />
        <asp:UpdateProgress runat="server" id="PageUpdateProgress">
            <ProgressTemplate>
                Loading...
            </ProgressTemplate>
        </asp:UpdateProgress>
        <asp:UpdatePanel runat="server" id="Panel">
            <ContentTemplate>
                <asp:Button runat="server" id="UpdateButton" onclick="UpdateButton_Click" text="Update" />
            </ContentTemplate>
        </asp:UpdatePanel>
    </form>


protected void UpdateButton_Click(object sender, EventArgs e)
{
    System.Threading.Thread.Sleep(5000); //Your treatment
} 
于 2012-06-25T16:58:31.127 に答える