DetailsView.RaisePostBackEvent(String) Method

Definition

Raises the appropriate events for the DetailsView control when it posts back to the server.

protected:
 virtual void RaisePostBackEvent(System::String ^ eventArgument);
protected virtual void RaisePostBackEvent (string eventArgument);
abstract member RaisePostBackEvent : string -> unit
override this.RaisePostBackEvent : string -> unit
Protected Overridable Sub RaisePostBackEvent (eventArgument As String)

Parameters

eventArgument
String

The event argument from which to create a CommandEventArgs for the event or events that are raised.

Remarks

The page calls the RaisePostBackEvent method when a postback event occurs that raises the appropriate events for a DetailsView control. This call occurs in the page life cycle after loading and change notification are complete, but before prerendering occurs. This method has been implemented to create a CommandEventArgs object for the events that are raised.

Note

This method is used primarily by control developers to extend the DetailsView control.

Applies to

See also