I have a textbox and I would like to know how I can show the updated text as the user types in the textbox. i KNOW you can do this by appending each keystroke you type in but there are flaws in that method. (i.e if user highlights and deletes portion of the text it wont update correctly since it goes by keystrokes -> each del keystroke) And for somereason i cant output the txtbox variable to show the current text in the box. Can someone tell me why it does not work that way? I've only seen implementations where people append each character at a time as the user types into the box.