WebPartManagerInternals.SetZoneID(WebPart, String) Method

Definition

Sets a property that enables a WebPart or server control to keep the ID of the containing zone.

public:
 void SetZoneID(System::Web::UI::WebControls::WebParts::WebPart ^ webPart, System::String ^ zoneID);
public void SetZoneID (System.Web.UI.WebControls.WebParts.WebPart webPart, string zoneID);
member this.SetZoneID : System.Web.UI.WebControls.WebParts.WebPart * string -> unit
Public Sub SetZoneID (webPart As WebPart, zoneID As String)

Parameters

webPart
WebPart

The WebPart whose zoneID property value is being set.

zoneID
String

A string that contains the ID of the zone that webPart belongs to.

Remarks

This method is called by the WebPartManager control when a WebPart control is being added to a zone. Each WebPart control tracks the ID for the zone it belongs to, and this method sets the property that keeps the ID value.

Applies to

See also