"bbb" is being posted back, but .NET will not populate a read-only textbox from postback data. You can manually populate the text box by grabbing the form data yourself from the Page_Load()
method as follows:
textValue2.Text = Request.Form[textValue2.UniqueID];