上传多个文件范例!

UpLoad.aspx文件:

<%@ Page language="c#" Codebehind="MikeCat_UploadMF.aspx.cs" AutoEventWireup="false" Inherits="MikeCat.MikeCat_UploadMF" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
 <HEAD>
  <title>欢迎光临老猫的理想--多文件上传</title>
  <script language="JavaScript">
    function addFile()
    {
     var str = '<INPUT style="BORDER-RIGHT: darkblue 1px solid; BORDER-TOP: darkblue 1px solid; BORDER-LEFT: darkblue 1px solid; BORDER-BOTTOM: darkblue 1px solid" type="file" size="50" name="File">'
     document.getElementById('MyFile').insertAdjacentHTML("beforeEnd",str)
    }
  </script>
 </HEAD>
 <body>
  <form id="form1" method="post" encType="multipart/form-data" runat="server">
   <div align="center">
    <P id="MyFile">
     <asp:Label id="Label1" runat="server" Font-Size="12pt" Font-Bold="True" Font-Names="宋体">欢迎光临老猫的理想--多文件上传多文件上传</asp:Label><FONT face="宋体"><BR>
     </FONT><INPUT style="BORDER-RIGHT: darkblue 1px solid; BORDER-TOP: darkblue 1px solid; BORDER-LEFT: darkblue 1px solid; BORDER-BOTTOM: darkblue 1px solid"
      type="file" size="50" name="File"></P>
    <P><input style="BORDER-RIGHT: darkblue 1px solid; BORDER-TOP: darkblue 1px solid; BORDER-LEFT: darkblue 1px solid; BORDER-BOTTOM: darkblue 1px solid"
      οnclick="addFile()" type="button" value="增加"> <input style="BORDER-RIGHT: darkblue 1px solid; BORDER-TOP: darkblue 1px solid; BORDER-LEFT: darkblue 1px solid; BORDER-BOTTOM: darkblue 1px solid"
      οnclick="this.form.reset()" type="button" value="重置">
     <asp:button id="UploadButton" Text="上传" Runat="server" BorderColor="DarkBlue" BorderWidth="1px"></asp:button></P>
    <P><asp:label id="strStatus" runat="server" BorderColor="White" BorderStyle="None" Width="500px"
      Font-Size="9pt" Font-Bold="True" Font-Names="宋体"></asp:label></P>
   </div>
  </form>
 </body>
</HTML>

upload.aspx.cs文件:

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace MikeCat
{
 /// <summary>
 /// MikeCat_UploadMF 的摘要说明。
 /// ********************************
 /// 欢迎光临老猫的理想--多文件上传多文件上传--BY MIKECAT
 /// http://www.mikecat.net
 /// ********************************
 /// </summary>
 public class MikeCat_UploadMF : System.Web.UI.Page
 {
  protected System.Web.UI.WebControls.Button UploadButton;
  protected System.Web.UI.WebControls.Label Label1;
  protected System.Web.UI.WebControls.Label strStatus;
 
  private void Page_Load(object sender, System.EventArgs e)
  {
   /// 在此处放置用户代码以初始化页面
   if (this.IsPostBack)
   {
    SaveFiles();
   }
  }

  private Boolean SaveFiles()
  {
   ///遍历file
   HttpFileCollection files  = HttpContext.Current.Request.Files;

   ///状态信息
   System.Text.StringBuilder strMsg = new System.Text.StringBuilder();
   strMsg.Append("上传的文件分别是:<hr color=red>");
   try
   {
    for(int iFile = 0; iFile < files.Count; iFile++)
    {
     ///检查文件扩展名字
     ///提供访问客户端已经上载的各个文件
     HttpPostedFile postedFile = files[iFile];
     string fileName, fileExtension;
     fileName = System.IO.Path.GetFileName(postedFile.FileName);
     if (fileName != "")
     {
      fileExtension = System.IO.Path.GetExtension(fileName);
      strMsg.Append("上传的文件类型:" + postedFile.ContentType.ToString() + "<br>");
      strMsg.Append("客户端文件地址:" + postedFile.FileName + "<br>");
      strMsg.Append("上传文件的文件名:" + fileName + "<br>");
      strMsg.Append("上传文件的扩展名:" + fileExtension + "<br><hr>");
      ///'可根据扩展名字的不同保存到不同的文件夹
      ///注意:可能要修改你的文件夹的匿名写入权限。
      postedFile.SaveAs(System.Web.HttpContext.Current.Request.MapPath("upload/") + fileName);
     }
    }
    strStatus.Text = strMsg.ToString();
    return true;
   }
   catch(System.Exception Ex)
   {
    strStatus.Text = Ex.Message;
    return false;
   }
  }
  #region Web 窗体设计器生成的代码
  override protected void OnInit(EventArgs e)
  {
   //
   // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
   //
   InitializeComponent();
   base.OnInit(e);
  }

  /// <summary>
  /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  /// 此方法的内容。
  /// </summary>
  private void InitializeComponent()
  {   
   this.ID = "Upload";
   this.Load += new System.EventHandler(this.Page_Load);

  }
  #endregion

 }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值