Client access to a obj in a User Control

  • Thread starter Thread starter george d lake
  • Start date Start date
G

george d lake

Hi,
I have a user control with a textbox and I need to access it form
JavaScript.
here is the tag.....

<input name="ucCallers:tbCaller" type="text" id="ucCallers_tbCaller"

the ":" is giving me problems....

any ideas?
 
Try removing the ":" or use <% = ucCallers_tbCaller.ClientID %> in the
javascript code.

HTH,
Bill P.
 
Back
Top