First Of all Write Runat Server with html controls.
<input type="text" id="TextBox6" value="" style="visibility:hidden;" runat="server" />
And if you cannot write of edit value of textbox with javascript then Use Following code to change textbox
.
document.getElementById('<%=TextBox6.ClientID %>').value = "Text";
<input type="text" id="TextBox6" value="" style="visibility:hidden;" runat="server" />
And if you cannot write of edit value of textbox with javascript then Use Following code to change textbox
.
document.getElementById('<%=TextBox6.ClientID %>').value = "Text";