FormView.HeaderRow Property

Gets the FormViewRow object that represents the header row in a FormView control.

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

public:
virtual property FormViewRow^ HeaderRow {
	FormViewRow^ get ();
}
/** @property */
public FormViewRow get_HeaderRow ()

public function get HeaderRow () : FormViewRow

Not applicable.

Property Value

A FormViewRow that represents the header row in a FormView control.

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

NoteNote:

The HeaderRow property is available only after the FormView 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 FormView control has been rendered; otherwise, the FormView control overwrites any changes.

The following example demonstrates how to use the HeaderRow property to programmatically modify the properties of the header row during the ItemCreated event.

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

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: