Version

RaisePostBackEvent Method (SmartWebControl)

Processes events generated when a web form is posted back to the server.
Syntax
'Declaration
 
Public Sub RaisePostBackEvent( _
   ByVal eventArgument As String _
) 
public void RaisePostBackEvent( 
   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

This method is a public to implement the IPostBackEventHandler interface. External (or parent) elements may percolate event notifications down to this element by invoking this method with a suitably formatted eventArgument.

Inheritors may carry out further processing of the eventArgument by overriding OnRaisePostBackEvent to parse the argument and direct reaction.

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