MobilePage.RaisePostBackEvent(IPostBackEventHandler, String) Method

Definition

Notifies the server control that caused the postback that it should handle an incoming postback event. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

protected override void RaisePostBackEvent (System.Web.UI.IPostBackEventHandler sourceControl, string eventArgument);

Parameters

sourceControl
IPostBackEventHandler

The ASP.NET server control that caused the postback. This control must implement the IPostBackEventHandler interface.

eventArgument
String

The postback argument.

Remarks

This member overrides the Page.RaisePostBackEvent method to determine whether the control is a Form. In that case, the method attempts to locate and call the default event handler from the active mobile Web Form. Otherwise, the base method is called.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also