プレーン<input type="file" />
を使用してファイルを投稿するASP.net Webフォーム(v3.5)を取得するにはどうすればよいですか?
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)));
}
}
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
}
}
enctype
のform
属性をmultipart/form-data
に設定する必要があります。 HttpRequest.Files
コレクションを使用して、アップロードされたファイルにアクセスできます。
runatサーバー属性でHTMLコントロールを使用する
<input id="FileInput" runat="server" type="file" />
その後、asp.net Codebehindで
FileInput.PostedFile.SaveAs("DestinationPath");
また、いくつかの 'サードパーティ オプションがあります。これらのオプションを使用すると、進行状況が表示されます
はい、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();
}
}
}
}
他の人が答えているように、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オブジェクトが存在する場合、それを返します。
Request.Filesコレクションには、FileUploadコントロールからのものか手動で記述された<input type="file">
からのものかに関係なく、フォームでアップロードされたファイルが含まれます。
したがって、WebFormの途中で単純な古いファイル入力タグを記述し、Request.Filesコレクションからアップロードされたファイルを読み取ることができます。
私はこれをずっと使ってきました。
これを解決するためのダウンロード可能なプロジェクトを含むコードプロジェクトの記事を次に示します。免責事項:私はこのコードをテストしていません。 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();