在ASP.NET中上传图像到服务器
本文关键字:图像 服务器 ASP NET | 更新日期: 2023-09-27 18:03:15
我使用dropzone.js上传图像到浏览器。我需要把这些图片上传到服务器。我需要使用Handler吗?我该怎么做呢?这是我的代码
$(document).ready(function (obj) {
Dropzone.options.myAwesomeDropzone = { // The camelized version of the ID of the form element
// The configuration we've talked about above
url: '#',
previewsContainer: ".dropzone-previews",
uploadMultiple: true,
parallelUploads: 100,
maxFiles: 100,
dictDefaultMessage: "",
accept: function(file, done) {
//in here I can access each file that dropping on to the browser
},
init: function () {
this.on("drop", function (file) {
});
this.on("uploadprogress", function (file, progress) {
//if (progress == 100) {
console.log(progress);
//}
});
this.on("maxfilesexceeded", function (file) {
alert("No more files please!");
});
this.on("complete", function (file) {
if (this.getUploadingFiles().length === 0 && this.getQueuedFiles().length === 0) {
alert(file.name);
}
});
}
}
createDropzone();});
我是新来的,有什么帮助吗?
我已经这样做了mvc。所以我不需要任何处理器来做这个。使用javascript上传文件
既然你使用的是普通的asp.net,这里有一篇你应该参考的文章。您不需要任何处理程序。
https://stackoverflow.com/a/16051735/3156647