gpt4 book ai didi

asp.net 使用多线程更新 UI

转载 作者:行者123 更新时间:2023-12-04 14:37:08 25 4
gpt4 key购买 nike

我有一个包含以下内容的 ASP.NET 网站

<asp:UpdatePanel ID="UpdatePanel1" runat="server" >
<ContentTemplate>
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</ContentTemplate>
</asp:UpdatePanel>

我创建了一个线程函数。在执行此功能期间,我想更新用户界面上的一些控件。
protected void Page_Load(object sender, EventArgs e)
{
new Thread(new ThreadStart(Serialize_Click)).Start();
}
protected void Serialize_Click()
{
for (int i = 1; i < 10; i++)
{
Label1.Text = Convert.ToString(i);
UpdatePanel1.Update();
System.Threading.Thread.Sleep(1000);
}
}

如何在线程执行期间更新 Web 控件?我需要强制“UpdatePanel1”回发吗?如何?

最佳答案

您需要使用客户端计时器(或其他一些方法)让浏览器向服务器请求更新,例如以下简化示例:

<asp:UpdatePanel ID="up" runat="server">        
<ContentTemplate>
<asp:Timer ID="Timer1" runat="server" Interval="1000" OnTick="timer_Ticked" />
<asp:Label ID="Label1" runat="server" Text="1" />
</ContentTemplate>
</asp:UpdatePanel>

然后在你的代码隐藏中:
protected void timer_Ticked(object sender, EventArgs e)
{
Label1.Text = (int.Parse(Label1.Text) + 1).ToString();
}

如果您有一个正在更新某些状态的后台进程,您将需要将共享状态存储在 session 、http 缓存或数据库中。请注意,缓存可能因多种因素而过期,并且如果 IIS 回收应用程序池,则后台线程可能会被终止。

关于asp.net 使用多线程更新 UI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/857999/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com