gpt4 book ai didi

c# - asp.net进度加载

转载 作者:行者123 更新时间:2023-11-30 20:05:36 27 4
gpt4 key购买 nike

由于要显示大量数据,我有一个页面需要几秒钟才能加载。

我怎样才能让它播放 .gif 动画,直到数据准备好显示在表格中而不是什么都不显示?

如何设置表格/内容加载完成后才显示?

最佳答案

您可以使用asp.net ajax 控件,例如ScriptManager + UpdateProgress + UpdatePanel。 举个例子

<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);
}

关于c# - asp.net进度加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11190467/

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