Im trying to make a web chat using ajax control tool kit. There is a script mannager, the update panel and the timer.
I inserted the textbox for showing every text that is introduced by the users, the text for writing and the send button are out. It works great but if im writing some text in the exact moment of refreshing time (winch happends a lot because its every 3 sec) it does not let me write correctly cause the textbox kind of blink and you miss a letter. So, wich is the correct method for doing this without lossing the fluidity of the writing.
Thanks.
I would suggest you to create 2 textboxes: one for input and anther for output. The one for input should be placed outside the update panel, so it never will be refreshed. Also you will need to add this textbox or its send button as a trigger to your update panel. Similar to this example
Here is the code I tried and it works:
Aspx:
And C#: