C# ASP.NET update SQL database with values from text boxes
- by Sir Graystar
Here's what I have. User enters values into text boxes (personal information etc.) and then presses a save changes button. The values in these text boxes get stored in an SQL database.
The problem I have is that when updating the database using the values from the text boxes, the page refreshes and the values in the text boxes are lost (or rather they return to the values that are already in the database as the data from the database is loaded into the text boxes on Page_Load).
When I update the database using valuse stored in variables it all works fine. What is the best way to update with the values from the text boxes?