Control Element (Delegate Control)

Applies to: SharePoint 2016 | SharePoint Foundation 2013 | SharePoint Online | SharePoint Server 2013

Identifies the control to implement in a delegate control.

Definition

<Control
  ControlAssembly = "Text"
  ControlClass = "Text"
  ControlSrc = "Text"
  Id = "Text"
  Sequence = "Integer">
</Control>

Elements and attributes

The following sections describe attributes, child elements, and parent elements.

Attributes

Attribute

Description

**ControlAssembly**

Optional **Text**. Specifies the strong name of the assembly for the control.

**ControlClass**

Optional **Text**. Specifies the fully qualified name of the class for the control.

**ControlSrc**

Optional **Text**. Specifies the relative URL of the .ascx file that serves as the source for the control.

**Id**

Optional **Text**. Specifies the ID of the control.

**Sequence**

Optional **Integer**. Specifies the sequence number for the control, which determines whether the control is added to the control tree for a page. The control with the lowest sequence number is added to the tree.

Child elements

Property

Parent elements

Elements

Example

When implementing a user control, use the ControlSrc attribute. When implementing a server control, use both the ControlAssembly and ControlClass attributes. For an example of how this element is used, see Delegate Controls.

See also