Version

OnRaisePostBackEvent Method (WebMonthView)

Triggers server-side events and behaviors on the WebMonthView element.
Syntax
'Declaration
 
Protected Overrides Sub OnRaisePostBackEvent( _
   ByVal eventArgument As String _
) 
protected override void OnRaisePostBackEvent( 
   string eventArgument
)

Parameters

eventArgument
Command information passed from the call the client-side script makes through fireServerEvent. This text has no relationship to the similarly-named System.EventArgs class.
Remarks

This method gets invoked by the framework and is responsible for handling server-side events. Inheritors should not override this method to intercept server-side events before they are handled by the base class. Undefined behavior may result from interference in the event processing of the framework.

Consequently, developers that want to receive notification of an event should subscribe an event handler to the server-side events formally exposed by WebMonthView.

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