AjaxOptions.OnComplete Property

Gets or sets the JavaScript function to call when response data has been instantiated but before the page is updated.

Namespace:  System.Web.Mvc.Ajax
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

'Declaration
Public Property OnComplete As String 
	Get 
	Set
'Usage
Dim instance As AjaxOptions 
Dim value As String 

value = instance.OnComplete

instance.OnComplete = value

Property Value

Type: System.String
The JavaScript function to call when the response data has been instantiated.

The specified function is called whether the page update is successful or not. The call to this function occurs before a call to either OnSuccess or OnFailure.

To cancel the page update, return false from the JavaScript function.

Show: