Posted on: 7/2/2015 1:45:54 PM | Views : 705

Hello folks,

I have a little problem with my asp.net web app.
I have a page with some asp:Textboxes which are filled at pageload from a sql database.
So the user can see the current values.
If the user changes the Text or fills an empty textbox, he can push the save button and the Textbox.Text will be saved as xml file.
so the plan!

My problem is, the xml is always just filled with the values from the beginning.
All user input has been ignored :(

Here is some example Code 
Textbox:
<div> <asp:Textbox runat="server" ID="FormName" placeholder="Name" style="border: 1px solid lightgrey; width:80%" />&nbsp; </div> Page_Load
FormName.Text = (reader["name"].ToString()); Button_Click
XDocument order = n ...

Go to the complete details ...