We can not access the server control by directly using it's id. You need to append and prepend the <%= and %> and also the ClientID. Because when rendering in browser the server control id will be change. If you are using JQuery to set the textbox value means you need to use # symbol. Check out the sample code clearly.
To get the server control value check my another post Click Here
HTML Code:
JavaScript Code:
JQuery Code:
To get the server control value check my another post Click Here
HTML Code:
<asp:TextBox ID="textbox1" runat="server"></asp:TextBox>
JavaScript Code:
document.getElementById("<%= textbox1.ClientID %>").value = "values to set using JavaScript";
JQuery Code:
$("#<%= textbox1.ClientID %>").val("values to set using JQuery");