I have a radtextbox that I am updating the text with JavaScript (clientside). The new value shows on the page but if I access the control server side, it shows the old value. This control is not being reloaded server side.
JavaScript: this will set the new value which shows up on the web page
document.Form1.txtTotalCharge_text.value = document.Form1.txtHdTotalCharge.value
If I access txtTotalCharge.text on the server side, the old value shows up. The asp:textbox doesn't have this issue. Can anyone tell me how to fix this.