GridView::OnRowEditing Method (GridViewEditEventArgs^)
Raises the RowEditing event.
Assembly: System.Web (in System.Web.dll)
Parameters
- e
-
Type:
System.Web.UI.WebControls::GridViewEditEventArgs^
A GridViewEditEventArgs that contains event data.
| Exception | Condition |
|---|---|
| HttpException | There is no handler for the RowEditing event. |
The RowEditing event is raised when a row's Edit button is clicked, but before the GridView control enters edit mode. This enables you to provide an event-handling method that performs a custom routine, such as canceling the edit operation, whenever this event occurs.
Raising an event invokes the event handler through a delegate. For more information, see NIB: Raising an Event.
The OnRowEditing method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
Notes to Inheritors:
When overriding OnRowEditing in a derived class, be sure to call the base class's OnRowEditing method so that registered delegates receive the event.
Available since 2.0