This documentation is archived and is not being maintained.
ListView::ItemSeparatorTemplate Property
Visual Studio 2010
Gets or sets the custom content for the separator between the items in a ListView control.
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
[BrowsableAttribute(false)] [PersistenceModeAttribute(PersistenceMode::InnerProperty)] [TemplateContainerAttribute(typeof(ListViewItem))] public: virtual property ITemplate^ ItemSeparatorTemplate { ITemplate^ get (); void set (ITemplate^ value); }
<asp:ListView> <ItemSeparatorTemplate>ITemplate</ItemSeparatorTemplate> </asp:ListView>
Property Value
Type: System.Web.UI::ITemplateAn object that contains the custom content for the separator between the items of the ListView control. The default is nullptr, which indicates that this property is not set.
Use the ItemSeparatorTemplate property to define the contents of the separator between single items of the ListView control. The ItemSeparatorTemplate is displayed after every item except the last one.
To specify the custom template declaratively, add an ItemSeparatorTemplate element inside the ListView control. You can then add the contents of the template to the ItemSeparatorTemplate element.
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: