I have just began to develop web applications at visual studio, with c# and asp.net. In one of my pages, I have set the textbox's text value to something. The user can change the text and save it. Clicking save button, i got to get the new text value from the textbox but i always get the first text set. I would be so glad if you help me.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Often this can be caused by setting the textbox value in If this is the situation, then you can wrap the code that assigns the value to the textbox in an if block like this:
|
|||||||||||
|
|
The problem is probably that your text box isn't properly tied to your view model. Some sample code could help verify though. |
|||
|
|
IsPostBack. – Yuck Feb 1 '12 at 13:55