Thanks for the responses. However, my problem is not how to update the text box which I have it coded just fine. The problem is the text goes back to empty.
Here is what I have so far:
protected void SetStatus(string message) {
Label lblStatus = (Label)Master.FindControl("lblStatus");
lblStatus.Visible = true;
lblStatus.Text = message;
}
The above method is in my base page class and it's being called from child pages. The code executes but for some reason the text is not getting updated. I am not sure exactly why as I have seen sometimes the Page_Load is getting fired twice when I post back and maybe this is causing the problem. I tried tracing but it wasn't very helpfull. Is there any kind of tool that let's you see when a certain control is being updated and by who?
Thanks