MobilePage.RaisePostBackEvent(IPostBackEventHandler, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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, System::String ^ eventArgument);
protected override void RaisePostBackEvent (System.Web.UI.IPostBackEventHandler sourceControl, string eventArgument);
override this.RaisePostBackEvent : System.Web.UI.IPostBackEventHandler * string -> unit
Protected Overrides Sub RaisePostBackEvent (sourceControl As IPostBackEventHandler, eventArgument As String)
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.