I am working with a serial port device in asp.net.It works in different thread than UI thread.In its event I want to get access to my textbox and change its value.
void posInfo(string smth)
{
txtUI.text = smth;
}
this is giving me exception. how can i achieve this?