DataListFooterTemplate Property

The template control type to use for the footer

Definition

Namespace: EWSoftware.ListControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2023.4.9.0
public Type FooterTemplate { get; set; }

Property Value

Type

Remarks

The footer template is bound to the data source as a whole rather than an individual row. If not set, a footer section will not be shown.

Example

C#
// AddressFooter is a user control derived from TemplateControl
dataList.FooterTemplate = typeof(AddressFooter);

Exceptions

ArgumentExceptionThis is thrown if the specified type is not derived from TemplateControl.

See Also