asp.net textbox onley remembers initial value - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T19:42:19Zhttp://stackoverflow.com/feeds/question/551710http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/551710/asp-net-textbox-onley-remembers-initial-value0asp.net textbox onley remembers initial valueGarry2009-02-15T22:12:50Z2009-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#5517195Answer by Canavar for asp.net textbox onley remembers initial valueCanavar2009-02-15T22:19:31Z2009-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>