How can I set focus in a Textbox into a WebUserControl?

see07

Regular
Joined
Apr 16, 2004
Messages
78
Location
Mexico City
Hello everybody:
I have a WebUserControl embedded into a Web Form (I’m using C# .net).
When I load Web Form I need to set the cursor into a Textbox that is into WebUserControl.
In <body> of Web Form I have:
<body bgColor=”#ccfff MS_POSITIONING=”GridLayout” onload=”document.WUCDatos.TextBox2.focus(); “>
Where WUCDatos is form id of WebUserControl and TextBox2 is the Text Box into WebUserControl.
But this code doesn’t work.
I’ll appreciate your help.
A.L.
 
Thanks you very much for your suggestion, finally the way I achieved this was <body bgColor=”#ccfff MS_POSITIONING=”GridLayout” onload=”document.forms[0].WUCDatos1_TextBox2.focus();“>
If you have more than 1 WebUserControl change [0] for [1] and thus…
 
Back
Top