Version

OnRaisePostBackEvent Method (SmartWebControl)

Receives notification when a web form posts back to the server with event information.
Syntax
'Declaration
 
Protected Overridable Sub OnRaisePostBackEvent( _
   ByVal eventArgument As String _
) 
protected virtual void OnRaisePostBackEvent( 
   string eventArgument
)

Parameters

eventArgument
Text argument describing the event that has transpired. The formatting of this text argument may vary based on the element and event.
Remarks

Inheritors perform processing of post back events by overriding this method to parse the eventArgument and direct the reaction of their element. This method is called indirectly by the ASP.NET framework through the IPostBackEventHandler interface, which SmartWebControl implements.

Inheritors must not make any assumptions about the timing in which they receive a particular event notification during post back, and the notifications of any and all other events.

The formatting of the eventArgument is subject to change.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also