IPostBackEventHandler Interface
.NET Framework (current version)
Defines the method ASP.NET server controls must implement to handle postback events.
Assembly: System.Web (in System.Web.dll)
| Name | Description | |
|---|---|---|
![]() | RaisePostBackEvent(String^) | When implemented by a class, enables a server control to process an event raised when a form is posted to the server. |
To create a server control that captures form submission information from the browser, you must implement this interface. For more information on how to use this interface, see Server Event Handling in ASP.NET Web Forms Pages.
The following code example defines a custom button server control that causes postback, captures the postback event using the RaisePostBackEvent method, and raises a Click event on the server.
.NET Framework
Available since 1.1
Available since 1.1
Show:
