asp.net textbox onley remembers initial value - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T19:42:19Z http://stackoverflow.com/feeds/question/551710 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/551710/asp-net-textbox-onley-remembers-initial-value 0 asp.net textbox onley remembers initial value Garry 2009-02-15T22:12:50Z 2009-02-15T22:19:31Z <p>Hi,</p> <p>In my Page_Load I set the text equal to a value e.g. txtNote.text="note text ex"</p> <p>If I change that text on my actual form to something else, then try to write my new value to a db ... the textNote.text is still "note text ex" what it was set to in the Page_Load...not what I changed it to on the form....can this be changed?</p> <p>Thanks,</p> http://stackoverflow.com/questions/551710/asp-net-textbox-onley-remembers-initial-value/551719#551719 5 Answer by Canavar for asp.net textbox onley remembers initial value Canavar 2009-02-15T22:19:31Z 2009-02-15T22:19:31Z <p>Take your assignment into IsPostBack control like that : </p> <pre><code>if (!IsPostBack) { txtNote.Text="note text ex"; } </code></pre>