Page.RegisterRequiresRaiseEvent Method
.NET Framework 3.0
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)
Assembly: System.Web (in system.web.dll)
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.
void DisplayUserName(Object sender, EventArgs ea)
{
get_Response().Write("Welcome to "
+ get_Server().HtmlEncode(userName.get_Text()));
} //DisplayUserName
void RaiseEvent(Object sender, EventArgs ea)
{
// Raise a post back event for a control.
this.RaisePostBackEvent(userButton, "");
} //RaiseEvent
void Page_Load(Object sender, EventArgs ea)
{
// Register a control as one that requires postback handling.
this.RegisterRequiresRaiseEvent(userButton);
} //Page_Load
Community Additions
ADD
Show: