WebPartManager.GetCurrentWebPartManager Method
Assembly: System.Web (in system.web.dll)
public static WebPartManager GetCurrentWebPartManager ( Page page )
public static function GetCurrentWebPartManager ( page : Page ) : WebPartManager
Parameters
- page
The Web page that contains an instance of the WebPartManager.
Return Value
A WebPartManager that references the current instance of the control on a page.The GetCurrentWebPartManager method is useful in contexts where you want to retrieve a reference to the current WebPartManager control. A common scenario where this would occur is if you are writing a custom control that cannot know during development what the ID of the WebPartManager control on its page will be.
Note |
|---|
| The GetCurrentWebPartManager method is static, so you can call it directly without needing an instance of a WebPartManager control. |
Some controls in the Web Parts control set, such as WebPart controls, have a WebPartManager property that can retrieve a reference to the current WebPartManager control. Hence, when working with such controls, you should use this property to retrieve a reference.
If you are coding in a context where you know the ID of the WebPartManager control, such as writing code inline within a Web page, it is simplest and most efficient to refer directly to the WebPartManager control by using its ID.
The following code example demonstrates how to use the GetCurrentWebPartManager method. The example has two parts: a custom server control, and a Web page that hosts the control.
The custom Label control uses the GetCurrentWebPartManager method to retrieve the ID of the WebPartManager control on the current page, and then displays the ID.
The following code example provides the Web page that hosts the control in a WebPartZone zone.
After you load the page in a browser, notice that the ID of the current WebPartManager control is displayed within the custom Label control.
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Note