IPageAdapter.HandlePagePostBackEvent(String, String) Method

Definition

Returns true if it handles the exception. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 bool HandlePagePostBackEvent(System::String ^ eventSource, System::String ^ eventArgument);
public bool HandlePagePostBackEvent (string eventSource, string eventArgument);
abstract member HandlePagePostBackEvent : string * string -> bool
Public Function HandlePagePostBackEvent (eventSource As String, eventArgument As String) As Boolean

Parameters

eventSource
String

Source identifier for the event.

eventArgument
String

Name of the event.

Returns

true if the page adapter handles the exception; otherwise, false.

Remarks

Called during postback. Allows a page adapter to handle a postback event by itself.

Applies to

See also