1
HTML送信ファイル
<input type="file" id="file1" />
SCRIPT
file=$("#file1");
$.ajax({
type: "POST",
url: "Allcammand.aspx?cmd=EnterProduct&idCompany="+getParam("idCompany"),
type:"post",
data: {
file: file
},
async: false ,
success: function(response){
},
error:function(xhr, ajaxOptions, thrownError){alert(xhr.responseText); ShowMessage("خطا در انتقال اطلاعات شرکت","fail");}
});
これが真でファイル転送するかどうか。
Allcammand.aspx
どのようにファイルを取得できますか????
[JQuery Ajax File Upload](http://stackoverflow.com/questions/2320069/jquery-ajax-file-upload)の可能な複製 – Quentin