ASP.NET user control - can't get client-side (JavaScript) altered value back into control - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T22:45:24Zhttp://stackoverflow.com/feeds/question/268180http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/268180/asp-net-user-control-cant-get-client-side-javascript-altered-value-back-into1ASP.NET user control - can't get client-side (JavaScript) altered value back into controlEngram2008-11-06T10:10:10Z2009-05-17T15:12:08Z
<p>Ok guys and gals, here is my problem:</p>
<p>I've built a custom control that uses a textbox to present data to the user. </p>
<p>When the user interacts with the control the <strong>value of that textbox is altered with client side javascript</strong>.</p>
<p>I also have a button on my page. When the user clicks the button I want to take the value from the custom control (aka. the textbox) and use it elsewhere.</p>
<p>So, in the onClick event for the button I do something like this:</p>
<pre><code>this.myLabel.Text = this.customControl.Value;
</code></pre>
<p>The problem is that the custom control does not have the new textbox value available. In the custom control the textbox is empty. However, I can see the correct value in the Request.Form collection.</p>
<p>Am I doing something wrong here? Or should I be reading from Request.Form?!</p>
http://stackoverflow.com/questions/268180/asp-net-user-control-cant-get-client-side-javascript-altered-value-back-into/268297#2682970Answer by Engram for ASP.NET user control - can't get client-side (JavaScript) altered value back into controlEngram2008-11-06T11:02:11Z2008-11-06T11:02:11Z<p>Ah ha! I've solved my own problem!</p>
<p>Because I had set Readonly="True" on the textbox control ASP.NET was not picking up it's value from the postback.</p>
<p>Instead I should have manually added the readonly attribute to the textbox during my user control construction.</p>
<p>eg.</p>
<pre><code>this.textBox.Attributes.Add("readonly", "readonly");
</code></pre>
http://stackoverflow.com/questions/268180/asp-net-user-control-cant-get-client-side-javascript-altered-value-back-into/282427#2824270Answer by AndreasKnudsen for ASP.NET user control - can't get client-side (JavaScript) altered value back into controlAndreasKnudsen2008-11-11T22:56:45Z2008-11-11T22:56:45Z<p>Interesting, I didn't realize readonly TextBox doesn't get updated from viewstate.</p>
<p>When I pull stunts like that in my web sites, I usually setup asp:HiddenFields that I dump data into with javascript (gotta love jQuery), and that I read values from on postbacks.</p>
<p>Keeps things cleaner I find.</p>
http://stackoverflow.com/questions/268180/asp-net-user-control-cant-get-client-side-javascript-altered-value-back-into/625655#6256550Answer by peap for ASP.NET user control - can't get client-side (JavaScript) altered value back into controlpeap2009-03-09T10:12:34Z2009-03-09T10:12:34Z<p>thanks dude, this was very helpful</p>
http://stackoverflow.com/questions/268180/asp-net-user-control-cant-get-client-side-javascript-altered-value-back-into/874799#8747990Answer by Ashraf Sabry for ASP.NET user control - can't get client-side (JavaScript) altered value back into controlAshraf Sabry2009-05-17T15:12:08Z2009-05-17T15:12:08Z<p>Strange that you answered yourself!
In fact, I've faced this nuisance before, and cost me some time until I found a note in the visual studio documentation describing the cause, you can read it here <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.textbox.readonly.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.textbox.readonly.aspx</a> in the "important note" section.</p>