FormView Events
.NET Framework 2.0
| Name | Description | |
|---|---|---|
| DataBinding | Occurs when the server control binds to a data source. (Inherited from Control.) |
| DataBound | Occurs after the server control binds to a data source. (Inherited from BaseDataBoundControl.) |
| Disposed | Occurs when a server control is released from memory, which is the last stage of the server control lifecycle when an ASP.NET page is requested. (Inherited from Control.) |
| Init | Occurs when the server control is initialized, which is the first step in its lifecycle. (Inherited from Control.) |
| ItemCommand | Occurs when a button within a FormView control is clicked. |
| ItemCreated | Occurs after all the rows are created in a FormView control. |
| ItemDeleted | Occurs when a Delete button within a FormView control is clicked, but after the delete operation. |
| ItemDeleting | Occurs when a Delete button within a FormView control is clicked, but before the delete operation. |
| ItemInserted | Occurs when an Insert button within a FormView control is clicked, but after the insert operation. |
| ItemInserting | Occurs when an Insert button within a FormView control is clicked, but before the insert operation. |
| ItemUpdated | Occurs when an Update button within a FormView control is clicked, but after the update operation. |
| ItemUpdating | Occurs when an Update button within a FormView control is clicked, but before the update operation. |
| Load | Occurs when the server control is loaded into the Page object. (Inherited from Control.) |
| ModeChanged | Occurs when the FormView control switches between edit, insert, and read-only mode, but after the mode has changed. |
| ModeChanging | Occurs when the FormView control switches between edit, insert, and read-only mode, but before the mode changes. |
| PageIndexChanged | Occurs when the value of the PageIndex property changes after a paging operation. |
| PageIndexChanging | Occurs when the value of the PageIndex property changes before a paging operation. |
| PreRender | Occurs after the Control object is loaded but prior to rendering. (Inherited from Control.) |
| Unload | Occurs when the server control is unloaded from memory. (Inherited from Control.) |
Reference
FormView ClassSystem.Web.UI.WebControls Namespace
DetailsView Class
GridView
FormViewRow
FormViewMode
AccessDataSource Class
SqlDataSource
ObjectDataSource
FormView.AllowPaging Property
FormView.CurrentMode Property
FormView.DataKeyNames Property
FormView.DefaultMode Property
FormView.PagerStyle Property
FormView.PagerSettings Property
FormView.EditRowStyle Property
FormView.EmptyDataRowStyle Property
FormView.FooterStyle Property
FormView.HeaderStyle Property
FormView.InsertRowStyle Property
FormView.PagerStyle Property
FormView.RowStyle Property
FormView.EditItemTemplate Property
FormView.EmptyDataTemplate Property
FormView.FooterTemplate Property
FormView.HeaderTemplate Property
FormView.InsertItemTemplate Property
FormView.ItemTemplate Property
FormView.PagerTemplate Property
ItemCreated
ItemCommand
ItemDeleted
ItemDeleting
ItemInserted
ItemInserting
ItemUpdated
ItemUpdating
ModeChanged
ModeChanging
PageIndexChanged
PageIndexChanging
Community Additions
ADD
Show: