Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
Please post the code from your button click handler (in your .aspx.cs file) – Brian Driscoll Feb 1 '12 at 13:54
please show some source code... – Yahia Feb 1 '12 at 13:55
Post your code. This sounds like it's an issue with checking for IsPostBack. – Yuck Feb 1 '12 at 13:55
1  
Mert mark the correct answer [DOK's answer], this will encourage people giving answers. – Ravia Feb 1 '12 at 14:17

2 Answers

up vote 5 down vote accepted

Often this can be caused by setting the textbox value in Page_Load without wrapping that in !IsPostBack. When a page is submitted, the Page_Load event runs before the button click event. So, the textbox value gets repopulated with its original value before the click event looks at that value.

If this is the situation, then you can wrap the code that assigns the value to the textbox in an if block like this:

if (!IsPostBack)
{
   // set the textbox value
}
share|improve this answer
That solved my problem. Thank you. Have a nice day. – Mert Karatas Feb 1 '12 at 14:06
3  
Every single one of us has stubbed our toe on this one, Mert. Welcome to the club! – DOK Feb 1 '12 at 14:11
1  
@MertKaratas - please mark the answer as answered below the voting number so that other users who experience the same problem identify the solution easily. Thanks and welcome ! – nuux Feb 1 '12 at 15:17

The problem is probably that your text box isn't properly tied to your view model. Some sample code could help verify though.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.