如何使用普通的<input type="file" />
获取ASP.net网络表单(v3.5)发布文件?
我对使用ASP.net FileUpload服务器控件不感兴趣。
答案 0 :(得分:131)
在你的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)));
}
}
答案 1 :(得分:40)
这是一个不依赖任何服务器端控件的解决方案,就像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
}
}
答案 2 :(得分:23)
您必须将enctype
的{{1}}属性设置为form
;
然后,您可以使用multipart/form-data
集合访问上传的文件。
答案 3 :(得分:9)
将HTML控件与runat服务器属性一起使用
<input id="FileInput" runat="server" type="file" />
然后在asp.net Codebehind
FileInput.PostedFile.SaveAs("DestinationPath");
如果您有兴趣,还有一些3'rd party选项会显示进度
答案 4 :(得分:8)
是的,你可以通过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();
}
}
}
}
答案 5 :(得分:4)
Request.Files集合包含随表单上传的所有文件,无论它们来自FileUpload控件还是手动编写的<input type="file">
。
因此,您只需在WebForm中间编写一个普通的旧文件输入标记,然后读取从Request.Files集合上传的文件。
答案 6 :(得分:4)
正如其他人已经回答的那样,Request.Files是一个包含所有已发布文件的HttpFileCollection,您只需要为该文件询问该对象:
Request.Files["myFile"]
但是当有多个具有相同属性名称的输入标记时会发生什么:
Select file 1 <input type="file" name="myFiles" />
Select file 2 <input type="file" name="myFiles" />
在服务器端,前面的代码Request.Files [&#34; myFile&#34;]只返回一个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);
}
}
}
此扩展方法将返回名称为&#34; myFiles&#34;的所有HttpPostedFile对象。在HttpFileCollection中是否存在。
答案 7 :(得分:2)
我一直都在用这个。
答案 8 :(得分:1)
这是一个代码项目文章,其中包含一个旨在解决此问题的可下载项目。免责声明:我没有测试过这段代码。 http://www.codeproject.com/KB/aspnet/fileupload.aspx
答案 9 :(得分:0)
//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();