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 client side using (classic JavaScript way)AJAX. But problem I am facing is that controls (textbox, dropdown) which I would like to update when rendered on the client side get prefixed by the User Controls id and row ids.
So it becomes like UserContro_row_no_controlId.
With this it is becoming difficult to keep track of controls ids on the client side to update them.
Please let me know how this can be simplified?
Can we get what exactly will be prefixed to control when it’s rendered on client side?
What is good way to get ID to client side ?
I have tried using control.clientId but it’s giving me only _controlId part not the UserContro_row_no part.
Thanks all,