#wilsontek[GXGXGGXGXGGA]
New Member
I have a textbox and a button. On page load I select one column from one row and put its value in the textbox. I have a button click method that updates the same column/row with the value in the textbox.The problem i'm having is that when I clear the text in the text box, type in new data and hit submit the new text value is not being saved, it uses the old one. I put a breakpoint at the end of my button click method and it appears that asp.net is sending the old value of the textbox rather than the new one I put in. I'm totally stumped.
- This problem persists even if I have viewstate false on the textbox.
- Both of my LINQ queries are wrapped in a using statement.