I have a multiline textbox on my form. It is filled on load with content from a database. The user then manipulates this data, and it needs to be updated on the database. I have everything working except for getting the changed value of the textbox.
In the on_click event i try to get the value of the textbox like:
variable = txtbxName.Text;
when I do this it returns only the value it was pre-loaded with and not the value with the user updates.
I have tried setting autopostback to true and tried to databind() the controls, neither of these is the solution to my problem. I think I am missing a key piece of information, please help (c# native if possible).