0
我正在使用隱藏的iframe來上傳文件並嘗試從aspx的Page_Load中捕獲它。從隱藏的iframe使用文件上傳時Response.Files爲空
<input type="file" id="flAddRequestFile" name="RequestFileUpload" />
JS是這樣的:
var iframe = $('<iframe name="postiframe" id="postiframe" style="display: none" />');
$("body").append(iframe);
var form = $('#frm1');
form.attr("action", "/PresentationLayer/NewRequestFileUploadDialog.aspx");
form.attr("method", "post");
form.attr("enctype", "multipart/form-data");
form.attr("encoding", "multipart/form-data");
form.attr("target", "postiframe");
form.attr("file", $('#flAddRequestFile').val());
form.submit();
在NewRequestFileUploadDialog.aspx的背後,我不Request.Files
下得到任何東西的代碼。根本沒有標題。
請幫我一把。