Version

BeforeAsyncSubmit Property

Event fired before a page is submitted from a hidden asynchronous post back.
Syntax
'Declaration
 
Public Property BeforeAsyncSubmit As String
public string BeforeAsyncSubmit {get; set;}
Remarks

It can be the name of an implemented function or an explicit javascript statement(s). If the name of the function is used, then that event handler may contain 4 parameters.

  1. oWebTab - reference to the JavaScript object that represents UltraWebTab.
  2. notUsed - parameter is not used.
  3. oEvent - reference to the ig_EventObject object.
  4. id - the id of html element which raised submit.

Notes:

  1. Submit can be canceled by oEvent.cancel=true;
  2. Response can be canceled by oEvent.cancelResponse=true;
  3. Full postback can be triggered by oEvent.fullPostBack=true;

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