Hi all.
I want to update my record from db. For this purpose I use TextBoxes. When I show record inserted into textboxes on the page by setting their values with:
TextBox1.Text = myDataSet... etc.
this value is set on the server and when I post this page back with changed text server ignores that. Server only gets the value of TextBox1.Text from the value which was set when the page was loaded. In fact I solve this poroblem with some conditional code. But I wonder whether there is an explicit way to change the Text property which is already set.
I want to update my record from db. For this purpose I use TextBoxes. When I show record inserted into textboxes on the page by setting their values with:
TextBox1.Text = myDataSet... etc.
this value is set on the server and when I post this page back with changed text server ignores that. Server only gets the value of TextBox1.Text from the value which was set when the page was loaded. In fact I solve this poroblem with some conditional code. But I wonder whether there is an explicit way to change the Text property which is already set.