开发者

How to set progress bar on AjaxUpload?

开发者 https://www.devze.com 2023-03-25 09:10 出处:网络
new AjaxUpload($(\'input.partupload\'), { autoSubmit: true, action: \'/Home/UploadFile\', onComplete: function (file) {
new AjaxUpload($('input.partupload'), {
    autoSubmit: true,
    action: '/Home/UploadFile',
    onComplete: function (file) {
        alert("complate")  
    }
});

I used AjaxUplo开发者_C百科ad for upload the file, and want to set progress bar on it. I can't find solution in Google.


I've never run into AjaxUpload, but it doesn't appear to be documented very well. I also noticed that it uses silverlight to generate the progress bar - are you expecting everyone who uses your app to have silverlight?

If you're looking for a component that pretty much does the same thing and has some wide spread support, I would suggest using uploadify:

http://www.uploadify.com/

It's pretty well documented, and gives you a little more script control than AjaxUpload.

Best of luck!

0

精彩评论

暂无评论...
验证码 换一张
取 消