首页 > 编程 > .NET > 正文

ASP.NET实例教程之文件上传

2024-07-10 13:27:49
字体:
来源:转载
供稿:网友

本文是ASP.NET实例教程中关于文件上传FileUpload,希望本教程能给大家一些启发,同时对FileUpload也有更深刻的理解。

 

  1. Default.aspx:   

  2. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> 

  3.  

  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

  5.  

  6. <html xmlns="http://www.w3.org/1999/xhtml" > 

  7. <head runat="server"> 

  8.     <title>无标题页</title> 

  9. </head> 

  10. <body> 

  11.     <form id="form1" runat="server"> 

  12.         <asp:FileUpload ID="FileUpload1" runat="server" /> 

  13.         <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" /> 

  14.       <asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server" ControlToValidate="FileUpload1" 

  15.             ErrorMessage="必须是 jpg或者gif文件" ValidationExpression="^(([a-zA-Z]:)|(//{2}/W+)/$?)(//(/W[/W].*))+(.jpg|.Jpg|.gif|.Gif)$"></asp:RegularExpressionValidator> 

  16.     </form> 

  17.  

  18. </body> 

  19. </html> 

  20.  

  21.  

  22. Default.aspx.cs:  

  23.  

  24. using System;  

  25. using System.Data;  

  26. using System.Configuration;  

  27. using System.Web;  

  28. using System.Web.Security;  

  29. using System.Web.UI;  

  30. using System.Web.UI.WebControls;  

  31. using System.Web.UI.WebControls.WebParts;  

  32. using System.Web.UI.HtmlControls;  

  33.  

  34. public partial class _Default : System.Web.UI.Page   

  35. {  

  36.     protected void Page_Load(object sender, EventArgs e)  

  37.     {  

  38.  

  39.     }  

  40.    protected void Button1_Click(object sender, EventArgs e)  

  41.     {  

  42.         String savePath = @"F:/111/";  

  43.         if (FileUpload1.HasFile)  

  44.         {  

  45.             String filename;  

  46.             filename = FileUpload1.FileName;  

  47.             savePath +=filename;  

  48.             FileUpload1.SaveAs(savePath);  

  49.             Page.Response.Write(FileUpload1.PostedFile.ContentType + FileUpload1.PostedFile.ContentLength+"<br>");  

  50.             Page.Response.Write("<img src='"+savePath+"'>");  

  51.  

  52.         }  

  53.         else  

  54.         {  

  55.             Page.Response.Write("fff");  

  56.         }  

  57.     }  

去掉绿色部分就可上传任何文件,它是用一个正则表达式来验证上传文件的类型

 

例子二:

 

在ASP.NET 2.0中使用FileUpload服务器控件很容易的就能将文件上传到服务器,一个简单的例子如下:

aspx:

程序代码

 

  1. 〈%@ Page Language="C#" AutoEventWireup="true" CodeFile="fileupload.aspx.cs" Inherits="fileupload" %> 

  2.  

  3. 〈!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

  4.  

  5. 〈html xmlns="http://www.w3.org/1999/xhtml" > 

  6. 〈head runat="server"> 

  7.     〈title>FileUpload上传文件示例-Mzwu.com〈/title> 

  8. 〈/head> 

  9. 〈body> 

  10.     〈form id="form1" runat="server"> 

  11.     〈div> 

  12.          〈asp:FileUpload ID="FileUpload1" runat="server" /> 

  13.         〈asp:Button ID="Button1" runat="server" _disibledevent="Button1_Click" Text="上传文件" />〈br /> 

  14.         〈asp:Label ID="Label1" runat="server" Height="269px" Text="Label" Width="360px">〈/asp:Label>〈/div> 

  15.     〈/form> 

  16. 〈/body> 

  17. 〈/html> 

aspx.cs:

程序代码

 

  1. protected void Button1_Click(object sender, EventArgs e)  

  2. {  

  3.     if (FileUpload1.HasFile)  

  4.     {  

  5.         try  

  6.         {  

  7.             FileUpload1.SaveAs(Server.MapPath("upload") + "//" + FileUpload1.FileName);  

  8.             Label1.Text = "客户端路径:" + FileUpload1.PostedFile.FileName + "〈br>" +  

  9.                           "文件名:" + System.IO.Path.GetFileName(FileUpload1.FileName) + "〈br>" +  

  10.                           "文件扩展名:" + System.IO.Path.GetExtension(FileUpload1.FileName) + "〈br>" +  

  11.                           "文件大小:" + FileUpload1.PostedFile.ContentLength + " KB〈br>" +   

  12.                           "文件MIME类型:" + FileUpload1.PostedFile.ContentType + "〈br>" +  

  13.                           "保存路径:" + Server.MapPath("upload") + "//" + FileUpload1.FileName;  

  14.         }  

  15.         catch (Exception ex)  

  16.         {  

  17.             Label1.Text = "发生错误:" + ex.Message.ToString();  

  18.         }  

  19.     }  

  20.     else  

  21.     {  

  22.         Label1.Text = "没有选择要上传的文件!";  

  23.     }  

ASP.NET实例教程1.一次上传多个文件

要一次上传多个文件,我们可以像传单个文件那样对每个文件单独进行处理,除此之外,我们还可以使用HttpFileCollection类捕获从Request对象发送来的所有文件,然后再单独对每个文件进行处理,代码如下:

aspx.cs:

程序代码

 

  1. protected void Button1_Click(object sender, EventArgs e)  

  2. {  

  3.     string filepath = Server.MapPath("upload") + "//";  

  4.     HttpFileCollection uploadFiles = Request.Files;  

  5.     for (int i = 0; i 〈 uploadFiles.Count; i++)  

  6.     {  

  7.         HttpPostedFile postedFile = uploadFiles[i];  

  8.         try  

  9.         {  

  10.             if (postedFile.ContentLength > 0)  

  11.             {  

  12.                 Label1.Text += "文件 #" + (i + 1) + ":" + System.IO.Path.GetFileName(postedFile.FileName) + "〈br/>";  

  13.                 postedFile.SaveAs(filepath + System.IO.Path.GetFileName(postedFile.FileName));  

  14.             }  

  15.         }  

  16.         catch (Exception Ex)  

  17.         {  

  18.             Label1.Text += "发生错误: " + Ex.Message;  

  19.         }  

  20.     }  

ASP.NET实例教程2.上传文件类型的验证

对上传文件类型的验证既可以在客户端进行,也可以在服务器端进行。客户端可以使用验证控件来进行,不过我们今天主要说说如何在服务器端进行验证。上边cs文件中已经用GetExtension获取了文件的扩展名,只要稍加判断即可实现上传类型的验证:

aspx.cs:

程序代码

 

  1. protected void Button1_Click(object sender, EventArgs e)  

  2. {  

  3.     if (FileUpload1.HasFile)  

  4.     {  

  5.         fileExt = System.IO.Path.GetExtension(FileUpload1.FileName);  

  6.         if (fileExt == ".rar" || fileExt == ".zip")  

  7.         {  

  8.             try  

  9.             {  

  10.                 FileUpload1.SaveAs(Server.MapPath("upload") + "//" + FileUpload1.FileName);  

  11.                 Label1.Text = "客户端路径:" + FileUpload1.PostedFile.FileName + "〈br>" +  

  12.                               "文件名:" + System.IO.Path.GetFileName(FileUpload1.FileName) + "〈br>" +  

  13.                               "文件扩展名:" + System.IO.Path.GetExtension(FileUpload1.FileName) + "〈br>" +  

  14.                               "文件大小:" + FileUpload1.PostedFile.ContentLength + " KB〈br>" +   

  15.                               "文件MIME类型:" + FileUpload1.PostedFile.ContentType + "〈br>" +  

  16.                               "保存路径:" + Server.MapPath("upload") + "//" + FileUpload1.FileName;  

  17.             }  

  18.             catch (Exception ex)  

  19.             {  

  20.                 Label1.Text = "发生错误:" + ex.Message.ToString();  

  21.             }  

  22.         }  

  23.         else  

  24.         {  

  25.             Label1.Text = "只允许上传rar、zip文件!";  

  26.         }  

  27.     }  

  28.     else  

  29.     {  

  30.         Label1.Text = "没有选择要上传的文件!";  

  31.     }  

需要注意的是,我们不能过分依赖于客户端验证控件和服务器端上述方法的验证,因为用户只需将文件扩展名更改为允许的类型就可以避开上边的验证,这对用户来说并不是件困难的事情。

ASP.NET实例教程3.解决文件大小限制

在ASP.NET 2.0中FileUpload默认上传文件最大为4M,不过我们可以在web.cofig中修改相关节点来更改这个默认值,相关节点如下:

程序代码

 

  1. 〈system.web> 

  2.     〈httpRuntime maxRequestLength="40690" executionTimeout="6000" /> 

  3. 〈/system.web> 

maxRequestLength表示可上传文件的最大值,executionTimeout表示ASP.NET关闭前允许发生的上载秒数。

ASP.NET实例教程4."multipart/form-data"和Request共存

在ASP程序中一旦使用表单上传文件(form的enctype属性值为multipart/form-data),服务器端就不能再用Request.Form来获取表单的值,这种限制在ASP.NET 2.0中已经不存在了:

aspx.cs:

程序代码

 

  1. protected void Button1_Click(object sender, EventArgs e)  

  2. {  

  3.     if (FileUpload1.HasFile)  

  4.     {  

  5.         try  

  6.         {  

  7.             FileUpload1.SaveAs(Server.MapPath("upload") + "//" + FileUpload1.FileName);  

  8.             Label1.Text = "上传文件:" + FileUpload1.FileName + "〈br>" +  

  9.                           "说明:" + Request.Form["TextBox1"];//也可以用"TextBox1.Text"来获取说明  

  10.         }  

  11.         catch (Exception ex)  

  12.         {  

  13.             Label1.Text = "发生错误:" + ex.Message.ToString();  

  14.         }  

  15.     }  

  16.     else  

  17.     {  

  18.         Label1.Text = "没有选择要上传的文件!";  

  19.     }  

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表