I have a asp.net page, there is a TextBox control:
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
I want to change the TextBox's value using JavaScript, how can I do that.
I've tried:
document.getElementById("TextBox1").value = "balabala...";
Go to the complete details ...