Page.RegisterRequiresRaiseEvent Method (IPostBackEventHandler)
Registers an ASP.NET server control as one requiring an event to be raised when the control is processed on the Page object.
Assembly: System.Web (in System.Web.dll)
abstract RegisterRequiresRaiseEvent : control:IPostBackEventHandler -> unit override RegisterRequiresRaiseEvent : control:IPostBackEventHandler -> unit
Parameters
- control
-
Type:
System.Web.UI.IPostBackEventHandler
The control to register.
Only one server control can be registered per page request. The RegisterRequiresRaiseEvent must be used when the control does not include its control ID in the form post data. Also, the control that is registered must implement the IPostBackEventHandler interface.
The following code example uses the RegisterRequiresRaiseEvent method to register a Button Web server control as requiring an event to be raised. After you have registered the first Button control, you can cause the second Button control declared in the code to post the results of the first button's click event to the page.
Available since 1.1