I need to reflect a status on my page before a process runs and after it runs.
Here is what I am trying to do but it only reflects the last value set to the label.
lblMessage.Text = "Performing Adjustment....Please Wait";
ProcessRecords();
lblMessage.Text = "Adjustment Completed";
What do I need to do to make this work?
Thanks - David