I have an ASP.NET TextBox and I want it to be ReadOnly. (The user modify it using another control)
TextBox
ReadOnly
But when there is a PostBack()
PostBack()
Have your other control store the value in a hidden field, and on postback, pull the value from the hidden field and push it into the textbox on the server side.