I am working on ASP.NET and not using any ASP.NET\'s AJAX framework.
Now I am trying to update the contents of the textboxes and dropdowns in the Grid controls cell on clie
If you want the id of a control in the same control/page you can do that this way:
<%=txtControl.ClientID%>
If you want the id of a control inside a usercontrol you can do that like this:
<%=userControl.FindControl("txtControl").ClientID%>
Where "txtControl" is the server id of the control and "userControl" is the server id of the usercontrol.