DataList::FooterTemplate Property
Gets or sets the template for the footer section of the DataList control.
Assembly: System.Web (in System.Web.dll)
public: [BrowsableAttribute(false)] [PersistenceModeAttribute(PersistenceMode::InnerProperty)] [TemplateContainerAttribute((DataListItem^::typeid))] property ITemplate^ FooterTemplate { virtual ITemplate^ get(); virtual void set(ITemplate^ value); }
Property Value
Type: System.Web.UI::ITemplate^A System.Web.UI::ITemplate object that contains the template for the footer section of the DataList control. The default value is null.
Use the FooterTemplate property to control the contents of the footer section. The appearance of the footer section is controlled by the FooterStyle property.
Note |
|---|
The ShowFooter property must be set to true for this property to be visible. |
The HeaderStyle property of the DataList control inherits the style settings of the ControlStyle property. For example, if you specify a red font for the ControlStyle property, the HeaderStyle property will also have a red font. This allows you to provide a common appearance for the control by setting a single style property. You can override the inherited style settings by setting the HeaderStyle property. For example, you can specify a blue font for the HeaderStyle property, overriding the red font specified in the ControlStyle property.
To specify a template for the footer section, place the <FooterTemplate> tags between the opening and closing tags of the DataList control. You can then list the contents of the template between the opening and closing <FooterTemplate> tags.
Caution |
|---|
This control can be used to display user input, which might include malicious client script. Check any information that is sent from a client for executable script, SQL statements, or other code before displaying it in your application. You can use validation controls to verify user input before displaying the input text in a control. ASP.NET provides an input request validation feature to block script and HTML in user input. For more information, see Securing Standard Controls, How to: Protect Against Script Exploits in a Web Application by Applying HTML Encoding to Strings, and Validating User Input in ASP.NET Web Pages. |
The following code example demonstrates how to use the FooterTemplate property to control the contents of the footer section of the DataList control.
Note |
|---|
The following code sample uses the single-file code model and may not work correctly if copied directly into a code-behind file. This code sample must be copied into an empty text file that has an .aspx extension. For more information on the Web Forms code model, see ASP.NET Web Forms Page Code Model. |
Available since 1.1
FooterStyle
ShowFooter
System.Web.UI::ITemplate
DataList Class
System.Web.UI.WebControls Namespace
DataList Web Server Control Overview
Securing Standard Controls
How to: Protect Against Script Exploits in a Web Application by Applying HTML Encoding to Strings
Validating User Input in ASP.NET Web Pages
ASP.NET Web Forms Page Code Model

