This documentation is archived and is not being maintained.

ListView::AlternatingItemTemplate Property

Gets or sets the custom content for the alternating data item in a ListView control.

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web.Extensions (in System.Web.Extensions.dll)

[BrowsableAttribute(false)]
[PersistenceModeAttribute(PersistenceMode::InnerProperty)]
[TemplateContainerAttribute(typeof(ListViewDataItem), BindingDirection::TwoWay)]
public:
virtual property ITemplate^ AlternatingItemTemplate {
	ITemplate^ get ();
	void set (ITemplate^ value);
}
<asp:ListView>
	<AlternatingItemTemplate>ITemplate</AlternatingItemTemplate>
</asp:ListView>

Property Value

Type: System.Web.UI::ITemplate
An object that contains the custom content for the alternating data item in a ListView control. The default is nullptr, which indicates that this property is not set.

Use the AlternatingItemTemplate property to define a custom user interface (UI) for the alternating data item. The AlternatingItemTemplate template usually contains the same controls and content as the ItemTemplate template, but with a different appearance to distinguish items.

To specify the custom template declaratively, add an AlternatingItemTemplate element inside the ListView control. Then add controls and content between the opening and closing <AlternatingItemTemplate> tags. To display the field values from the data source, use a data-binding expression. For more information, see Data-Binding Expressions Overview.

To create buttons that automatically select, delete, and edit operations, add a button control to the template. Set its CommandName property to one of the values listed in the following table.

Button type

CommandName value

Delete

"Delete"

Edit

"Edit"

Select

"Select"

The following example shows how to use the AlternatingItemTemplate template to define the style for alternating data items in a ListView control.

No code example is currently available or this language may not be supported.

.NET Framework

Supported in: 4, 3.5

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: