This is a migrated thread and some comments may be shown as answers.

Kendo Upload - ASP.NET Page Method?

0 Answers 157 Views
Upload
This is a migrated thread and some comments may be shown as answers.
Daniel
Top achievements
Rank 1
Daniel asked on 05 Aug 2012, 05:14 AM
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:

var crudServiceBaseUrl = "Default.aspx";
 
           $("#files").kendoUpload({
               async: {
                   saveUrl: crudServiceBaseUrl + "/FileUpload",
                   autoUpload: false
               },
               multiple: false,
               showFileList: true,
           });


Dan

No answers yet. Maybe you can help?

Tags
Upload
Asked by
Daniel
Top achievements
Rank 1
Share this question
or