下面是我的代码,调用哪个处理程序。如果我试着打电话就是扔错误。
$.ajaxFileUpload({
url: '../HttpHandler/AjaxFileUploader.ashx', //handler
secureuri: false,
fileElementId: id,
dataType: 'json',
data: { name: 'logan', id: 'id' },
responseType: 'json',
success: function (data, status) {
if (typeof (data.error) != 'undefined') {
if (data.error != '') {
alert(id)
alert(data.error);
} else {
alert("File Uploaded Successfully");
}
}
},
error: function (data, status, e) {
alert(e);
}
});