我一遍又一遍地搜索互联网,这似乎很简单,但不知何故它不起作用。
我正在尝试在 C# 中创建一个 Web 表单应用程序。Button1 应该从网站下载大量数据,我希望 Label1 在 Button1 中的代码运行时显示“正在下载”,并在代码完成后“完成”,但 Label1 在按钮单击后根本没有改变。
代码如下:
protected void Button1_Click(object sender, EventArgs e)
{
Label1.Text = "downloading";
//code for downloading data
Label1.Text = "done";
}