FormView::ItemCreated Event
Occurs after all the rows are created in a FormView control.
Assembly: System.Web (in System.Web.dll)
The ItemCreated event is raised after all rows are created in a FormView control. This can occur when the control is first rendered, or when the user navigates to another record. You can use this event to provide an event-handling method that performs a custom routine, such as adding to or modifying the contents of a row, whenever this event occurs.
Note |
|---|
The ItemCreated event occurs before the FormView control is bound to data. To modify the value of a bound field, use the DataBound event. |
You can access the header, footer, and pager rows in the FormView control by using the HeaderRow, FooterRow, TopPagerRow, or BottomPagerRow properties, respectively. To access the data row, use the Row property.
For more information about handling events, see Consuming Events.
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.
Note