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.

Namespace:   System.Web.UI
Assembly:  System.Web (in System.Web.dll)

No code example is currently available or this language may not be supported.

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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: