Here is the situation: I have a button and when I click it, it will execute some statements and I would like it to show some status messages. \[code\] protected void Button1_Click(object sender, EventArgs e) { //executes some statements //shows some status message like "Done" }\[/code\]I thought of using a label text to show the different status messages, but the label text only shows the last status message when the method completes. It does not show the in-between status messages....What am I doing wrong?