vote up 0 vote down star

I have an asp web page(login.aspx) that uses a master page (master.page).

I need to set focus to an asp:textbox(TextBox1) that is inside an asp:Panel(Panel1) on Login.aspx

I want to set focus to TextBox1 on an asp:Button click event (or page load on login.aspx for testing, I've tried both).

I have tried the following solutions with no success:

  • Page.SetFocus(TextBox1.ClientID);
  • Page.SetFocus(TextBox1);
  • Page.SetFocus(TextBox1.ClientID)
  • TextBox1.Focus();
  • TextBox Test = (TextBox)Panel1.FindControl("TextBox1");
  • Test.Focus();
flag

2 Answers

vote up -1 vote down check

Ok I found the answer, the code works fine in IE8 But not firefox for some reason

Anyone know why SetFocus() or Focus() doesn't work in firefox, are there any solutions?

link|flag
What was your final solution that worked in IE8? – zakster82 Aug 20 at 19:25
Any of the original solutions I explain above all working in IE8, none in firefox. It think it might be something my end. Thanks – David Aug 21 at 10:15
vote up 1 vote down

When using ASP.NET AJAX I use the ScriptManager to set focus...

ScriptManager.GetCurrent(this.Page).SetFocus(this.FirstNameTextBox);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.