I think my problem is quite easy, but I find no solution:
My Question: If I set a field by C#, I modify it in the browser, the value will still be the same.
Example
<input type="text" id="IdText" runat="server" />
Set it with c# (load data into the form, with page.aspx?id=2, get data from DB and set itz to input fields)
IdText.Value = "Example";
Modify it in the browser, I insert "MyExample", and click a button to update the DB And if I will request the Value with c# it's still the same.
string text = IdText.Value;
Here the Value is "Example", and not "MyExample".
Do I have to add some more code?
Thanks for your help.
TextBox?