This documentation is archived and is not being maintained.

DetailsView::HeaderRow Property

Gets a DetailsViewRow object that represents the header row in a DetailsView control.

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

[BrowsableAttribute(false)]
public:
virtual property DetailsViewRow^ HeaderRow {
	DetailsViewRow^ get ();
}

Property Value

Type: System.Web.UI.WebControls::DetailsViewRow
A DetailsViewRow that represents the header row in a DetailsView control.

The header row is displayed at the top of the DetailsView control when the HeaderText or HeaderTemplate property is set. Use the HeaderRow property to programmatically access the DetailsViewRow object that represents the header row.

NoteNote

The HeaderRow property is available only after the DetailsView control creates the header row in the ItemCreated event.

This property is commonly used when you need to programmatically manipulate the header row, for example when adding custom content. Any modification to the HeaderRow property must be performed after the DetailsView control has been rendered; otherwise, the DetailsView control will overwrite any changes.

The following code example demonstrates how to use the HeaderRow property to access the header row of the DetailsView control during the ItemCreated event. A Label control within the custom header row is then updated with the current page number.

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

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, 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: