ScriptManager.GetCurrent(Page) Method

Definition

Gets the ScriptManager instance for a given Page object.

public:
 static System::Web::UI::ScriptManager ^ GetCurrent(System::Web::UI::Page ^ page);
public static System.Web.UI.ScriptManager GetCurrent (System.Web.UI.Page page);
static member GetCurrent : System.Web.UI.Page -> System.Web.UI.ScriptManager
Public Shared Function GetCurrent (page As Page) As ScriptManager

Parameters

page
Page

The page instance to retrieve the ScriptManager from.

Returns

The current ScriptManager instance for the selected Page object, or null if no instance is defined.

Exceptions

page is null.

Remarks

Use this static method to determine whether a ScriptManager control is on a page, or to access the properties and methods of a ScriptManager control when you do not know its ID.

Applies to