asp.net - WebForm: Update textbox from another thread -


in webform, how update textbox thread

lock (tbconsole) {     tbconsole.text += "\r\n server:" + text;  } 

you don't.

code behind executed on server, resulting page sent client/browser. @ point, life cycle of c# code behind over.


Comments