我想显示代码的处理,该代码在按钮点击事件上运行。 请帮忙。 我的代码如下所示。
protected void btnSubmit_Click(object sender, EventArgs e)
{
//Do some stuff
//Show the message that the application is processing
lblCaption.Text = "Processing...updating label data";
//Do more stuff
lblCaption.Text = "Processing...creating label files.";
//More stuff that will take some time
lblCaption.Text = "Processing...updating label counts.";
//More stuff
lblCaption.Text = "Processing...completed.";
}