Nuta
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować się zalogować lub zmienić katalog.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
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)
Syntax
'Declaration
Public Property OnComplete As String
Get
Set
public string OnComplete { get; set; }
public:
property String^ OnComplete {
String^ get ();
void set (String^ value);
}
Property Value
Type: System.String
The JavaScript function to call when the response data has been instantiated.
Remarks
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.