ScriptManager.SetFocus Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets the browser focus to the specified control.
Overloads
SetFocus(String) |
Sets the browser focus to the control specified by ID. |
SetFocus(Control) |
Sets the browser focus to the specified control. |
SetFocus(String)
Sets the browser focus to the control specified by ID.
public:
void SetFocus(System::String ^ clientID);
public void SetFocus (string clientID);
member this.SetFocus : string -> unit
Public Sub SetFocus (clientID As String)
Parameters
- clientID
- String
The ID of the control to receive focus.
Remarks
The SetFocus method works like the SetFocus method for the Page class. Both methods make the control with the specified ID the active control on the Web page. The SetFocus method of the ScriptManager class is used to set focus during an asynchronous postback. During postbacks and when the page is first rendered, the SetFocus method calls the SetFocus method of the Page class.
If there are multiple calls to the SetFocus method, the control in the last call receives focus.
See also
Applies to
SetFocus(Control)
Sets the browser focus to the specified control.
public:
void SetFocus(System::Web::UI::Control ^ control);
public void SetFocus (System.Web.UI.Control control);
member this.SetFocus : System.Web.UI.Control -> unit
Public Sub SetFocus (control As Control)
Parameters
- control
- Control
The control to receive focus.
Remarks
The SetFocus method works like the SetFocus method for the Page class. Both methods make the specified control the active control on the Web page. The SetFocus method of the ScriptManager class is used to set focus during an asynchronous postback. During postbacks and when the page is first rendered, the SetFocus method calls the SetFocus method of the Page class.
If there are multiple calls to the SetFocus method, the control specified in the last call receives focus.