asp: textbox readonly

En el archivo asp tengo dos asp: textbox

<asp:TextBox ID="textValue" runat="server" Width="100px"/>
<asp:TextBox ID="textValue2" runat="server" Width="100px" ReadOnly="true"/>

then configuro el valor a través de javascript obteniendo

<asp:TextBox ID="textValue" runat="server" Width="100px" value="aaa"/>
<asp:TextBox ID="textValue2" runat="server" Width="100px" ReadOnly="true" value="bbb"/>

pero cuando actualice la página web finalmente obtenga

<asp:TextBox ID="textValue" runat="server" Width="100px" value="aaa"/>
<asp:TextBox ID="textValue2" runat="server" Width="100px" ReadOnly="true"/>

¿Por qué el valor bbb está "perdido"? ¿Cómo puedo evitar esto?

Respuestas a la pregunta(4)

Su respuesta a la pregunta