I have a page with textboxes and buttons. When the page loads, often times, focus is in one of the textboxes and I don't want this to happen. However, I don't want to use something like setfocus in the page load event because then when buttons are clicked the page will jump. How do prevent the textboxes or any controls for that matter of getting focus on page load?
|
1
|
|||
|
|
|
strange. by default, the page will not focus on any form input unless you set focus on it. I think you have to cancel all focus by Setfocus on page.
|
|||
|
|
To accomplish this you have to test for post back. If you detect the page has been posted back, you can set focus to the control, as you intend to. Otherwise, the page is not beeing posted back (GET), so you can avoid the focus on the control. As far as I know, by default, ASP.NET Webforms don't set the focus on any of |
||||
|
|
|
It turns out that freetextbox controls exhibit this behavior on IE7 and IE6. It is a bug they are investigating. |
||
|
|
