我有一個上傳控件和一個圖像框。當我上傳圖片時,我需要在框中顯示它。我的圖片上傳但未顯示在框中。在ASP.NET上傳圖像
上傳圖像的路徑返回如下。
〜/圖片/學生/ Student1.jpg
如何獲取路徑作爲
照片/學生/ Student1.jpg
我要上傳客戶端功能如下。
$.ajaxFileUpload({
url: 'FileUpload.ashx?id=' + FileFolder + '&Mainfolder=Photos' + '&parentfolder=Student',
secureuri: false,
fileElementId: 'uplPhoto',
dataType: 'json',
success: function (data, status) {
if (typeof (data.error) != 'undefined') {
if (data.error != '') {
alert(data.error);
} else {
$('#hdnFullPhotoPath').val(data.upfile);
$('#uplPhoto').val("");
$('#lblPhotoName').text('Photo uploaded successfully')
$('#Image1').attr('src', data.upfile);
alert(data.upfile);
}
}
},
error: function (data, status, e) {
alert(e);
}
});
}
else {
alert('The photo ' + filename + ' already exists');
return false;
}
}
}
else {
alert('You can upload only jpg,jpeg,pdf,doc,docx,txt,zip,rar extensions files.');
}
return false;
}
@ Aishvarya-你想從哪裏得到那條路?你想用它做什麼? – coder
@Coder,我需要在Image Box中顯示上傳的圖像。 – MusicLovingIndianGirl
你可以給你的服務器端代碼? – Nirmal