Is the kendo upload control capable of invoking an ASP.NET webforms page method? For instance:
[WebMethod]
public static string FileUpload(string id) { ... }
I see the control posting-back asynchronously, but this method is never invoked. Here is the control creation logic:
Dan
[WebMethod]
public static string FileUpload(string id) { ... }
I see the control posting-back asynchronously, but this method is never invoked. Here is the control creation logic:
var crudServiceBaseUrl = "Default.aspx"; $("#files").kendoUpload({ async: { saveUrl: crudServiceBaseUrl + "/FileUpload", autoUpload: false }, multiple: false, showFileList: true, });Dan