ASP.NET Web サイトで Ajax ベースの Fileupload を使用して、進行中の巨大なファイルをアップロードし、複数のファイルのアップロードを有効にしています。コードは次のようになります
JavaScript
<script type="text/javascript">
var ufiles;
$(document).ready(function () {
$("#fufile").change(function () {
if (this.files.length > 0) {
fupl(0);
}
});
});
function fupl(index) {
currcount = index + 1;
if (ufiles != null && ufiles.length > index) {
var formData = new FormData();
if (ufiles[index].size > 200000000) {
fupl(index + 1);
}
else {
formData.append("file", ufiles[index]);
$.ajax({
url: window.location.pathname,
type: 'POST',
xhr: function () {
myXhr = $.ajaxSettings.xhr();
if (myXhr.upload) {
myXhr.upload.addEventListener('progress', progressHandlingFunction, false);
}
return myXhr;
},
success: function (data) {
fupl(index + 1);
},
error: function (xhr, ajaxOptions, thrownError) {
},
data: formData,
cache: false,
contentType: false,
processData: false
});
}
}
};
function progressHandlingFunction(e) {
if (e.lengthComputable) {
}
}
</script>
フォームデータなしで入力コントロール内のファイルを反復処理する JavaScript コードも試しましたが、同じ結果が得られます。 % 進捗。さまざまなIISサーバー、さまざまなコードで試しましたが、信頼できるファイルアップロードが得られません. 助言がありますか?
完全を期すために C#
protected void Page_Load(object sender, EventArgs e)
{
try
{
if (HttpContext.Current.Request.Files.Count > 0)
{
Request.Files[0].SaveAs( Foopath + Files[0].FileName);
Response.Write(true);
}
}
catch
{
Response.Write(false);
}
}