Focussing Text Box Control

  • Thread starter Thread starter Ravikanth[MVP]
  • Start date Start date
R

Ravikanth[MVP]

Hi

Onload event of body tag call javascript function which
will set focus to textbox.

Ravikanth[MVP]
 
Hi

Give the body tag an ID and runat=server

<body ID="myBody" runat="server">

then in the code
protected System.Web.UI.HtmlControls.HtmlGenericControl myBody;

myBody.Attributes.Add("onload","document.forms[0].ELEMENTNAME.focus()");
Replace ELEMENTNAME to the element you want to focus on

--
Best Regards
Vidar Petursson
==============================
Microsoft Internet Client & Controls MVP
==============================
 
Back
Top