ASP.net Webフォーム(v3.5)を取得して、プレーンな古いファイルを使用してファイルを投稿するにはどうすればよい<input type="file" />
ですか?
ASP.net FileUploadサーバーコントロールの使用には興味がありません。
ASP.net Webフォーム(v3.5)を取得して、プレーンな古いファイルを使用してファイルを投稿するにはどうすればよい<input type="file" />
ですか?
ASP.net FileUploadサーバーコントロールの使用には興味がありません。
回答:
あなたのaspxで:
<form id="form1" runat="server" enctype="multipart/form-data">
<input type="file" id="myFile" name="myFile" />
<asp:Button runat="server" ID="btnUpload" OnClick="btnUploadClick" Text="Upload" />
</form>
後ろのコードで:
protected void btnUploadClick(object sender, EventArgs e)
{
HttpPostedFile file = Request.Files["myFile"];
//check file was submitted
if (file != null && file.ContentLength > 0)
{
string fname = Path.GetFileName(file.FileName);
file.SaveAs(Server.MapPath(Path.Combine("~/App_Data/", fname)));
}
}
var fileUploaded = document.getElementById("myFile").files[0];
し、あなたも使ってバイトを取得することができますreadAsArrayBuffer
:stackoverflow.com/questions/37134433/...を -しかし、あなたはすべてのそれらのバイトのクライアント・サイドをどうするつもりですか?OPは、サーバー側の通信ではなくASP .NETコントロールを完全に回避したいと考えています。あなたに-1。
OPが質問で説明したように、サーバー側のコントロールに依存しないソリューションは次のとおりです。
クライアント側のHTMLコード:
<form action="upload.aspx" method="post" enctype="multipart/form-data">
<input type="file" name="UploadedFile" />
</form>
upload.aspxのPage_Loadメソッド:
if(Request.Files["UploadedFile"] != null)
{
HttpPostedFile MyFile = Request.Files["UploadedFile"];
//Setting location to upload files
string TargetLocation = Server.MapPath("~/Files/");
try
{
if (MyFile.ContentLength > 0)
{
//Determining file name. You can format it as you wish.
string FileName = MyFile.FileName;
//Determining file size.
int FileSize = MyFile.ContentLength;
//Creating a byte array corresponding to file size.
byte[] FileByteArray = new byte[FileSize];
//Posted file is being pushed into byte array.
MyFile.InputStream.Read(FileByteArray, 0, FileSize);
//Uploading properly formatted file to server.
MyFile.SaveAs(TargetLocation + FileName);
}
}
catch(Exception BlueScreen)
{
//Handle errors
}
}
Request.Files[0]
の代わりRequest.Files["UploadedFile"]
とOPはあなただけ必要な、誰もがMVCのためにこれを使用したい場合は、MVCストレートASP .NETを使用していなかった間、HttpPostedFileBase
代わりにHttpPostedFile
。
あなたは、設定する必要がありますenctype
の属性form
にしますmultipart/form-data
。その後、HttpRequest.Files
コレクションを使用してアップロードしたファイルにアクセスできます。
runatサーバー属性でHTMLコントロールを使用する
<input id="FileInput" runat="server" type="file" />
その後、asp.net Codebehind
FileInput.PostedFile.SaveAs("DestinationPath");
また、あなたが参加した場合に進捗状況を示すいくつかのサードパーティのオプションもあります
<asp:FileUpload ID="fileUpload1" runat="server"></asp:FileUpload>
)を回避したいと考えていrunat=server
ましたinput
。
HtmlInputFile
コントロールが含まれます。
はい、これはajax postメソッドで実現できます。サーバー側ではhttphandlerを使用できます。したがって、要件に応じてサーバーコントロールを使用していません。
ajaxを使用すると、アップロードの進行状況も表示できます。
入力ストリームとしてファイルを読み取る必要があります。
using (FileStream fs = File.Create("D:\\_Workarea\\" + fileName))
{
Byte[] buffer = new Byte[32 * 1024];
int read = context.Request.GetBufferlessInputStream().Read(buffer, 0, buffer.Length);
while (read > 0)
{
fs.Write(buffer, 0, read);
read = context.Request.GetBufferlessInputStream().Read(buffer, 0, buffer.Length);
}
}
サンプルコード
function sendFile(file) {
debugger;
$.ajax({
url: 'handler/FileUploader.ashx?FileName=' + file.name, //server script to process data
type: 'POST',
xhr: function () {
myXhr = $.ajaxSettings.xhr();
if (myXhr.upload) {
myXhr.upload.addEventListener('progress', progressHandlingFunction, false);
}
return myXhr;
},
success: function (result) {
//On success if you want to perform some tasks.
},
data: file,
cache: false,
contentType: false,
processData: false
});
function progressHandlingFunction(e) {
if (e.lengthComputable) {
var s = parseInt((e.loaded / e.total) * 100);
$("#progress" + currFile).text(s + "%");
$("#progbarWidth" + currFile).width(s + "%");
if (s == 100) {
triggerNextFileUpload();
}
}
}
}
fs.close()
IIS内で何らかの理由で開いたままなので、ヒントを追加して、他のすべてが読み取り不能なファイルになる可能性があるすべてを追加する必要があるかもしれません。
他の人が答えているように、Request.Filesは投稿されたすべてのファイルを含むHttpFileCollectionであり、次のようにそのオブジェクトにファイルを要求するだけで済みます。
Request.Files["myFile"]
ただし、同じ属性名を持つ複数の入力マークアップがある場合はどうなりますか。
Select file 1 <input type="file" name="myFiles" />
Select file 2 <input type="file" name="myFiles" />
サーバー側では、前のコードRequest.Files ["myFile"]は、2つのファイルではなく1つのHttpPostedFileオブジェクトのみを返します。私は.net 4.5でGetMultipleと呼ばれる拡張メソッドを見てきましたが、貴重なバージョンでは存在しません。そのため、拡張メソッドを次のように提案します。
public static IEnumerable<HttpPostedFile> GetMultiple(this HttpFileCollection pCollection, string pName)
{
for (int i = 0; i < pCollection.Count; i++)
{
if (pCollection.GetKey(i).Equals(pName))
{
yield return pCollection.Get(i);
}
}
}
この拡張メソッドは、存在する場合、HttpFileCollectionに「myFiles」という名前のすべてのHttpPostedFileオブジェクトを返します。
これは、これを解決することを目的としたダウンロード可能なプロジェクトを含むコードプロジェクトの記事です。免責事項:私はこのコードをテストしていません。 http://www.codeproject.com/KB/aspnet/fileupload.aspx
//create a folder in server (~/Uploads)
//to upload
File.Copy(@"D:\CORREO.txt", Server.MapPath("~/Uploads/CORREO.txt"));
//to download
Response.ContentType = ContentType;
Response.AppendHeader("Content-Disposition", "attachment;filename=" + Path.GetFileName("~/Uploads/CORREO.txt"));
Response.WriteFile("~/Uploads/CORREO.txt");
Response.End();
runat="server"
、それはASP.NETのサーバーのものから独立していない