上传多个文件范例!

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
    评论
在Python中,可以使用xlrd库来读取Excel文件。下面是一个读取Excel文件范例: ```python import xlrd # 打开Excel文件 workbook = xlrd.open_workbook('example.xlsx') # 获取所有sheet名称 sheet_names = workbook.sheet_names() # 遍历所有sheet for sheet_name in sheet_names: # 根据sheet名称获取sheet对象 sheet = workbook.sheet_by_name(sheet_name) # 获取sheet的行数和列数 rows = sheet.nrows cols = sheet.ncols # 遍历每一行 for row in range(rows): # 遍历每一列 for col in range(cols): # 获取单元格的值 cell_value = sheet.cell_value(row, col) # 打印单元格的值 print(cell_value, end=' ') print() # 换行打印每一行的数据 ``` 在这个例子中,我们首先使用xlrd库的`open_workbook`函数打开Excel文件。然后,通过`sheet_names`方法获取所有的sheet名称,再通过循环遍历每个sheet。接下来,我们使用sheet对象的`nrows`和`ncols`属性获取行数和列数,然后使用两个循环遍历每个单元格,并使用`cell_value`方法获取每个单元格的值。最后,我们打印每个单元格的值。 请注意,这个例子假设Excel文件名为`example.xlsx`,你需要根据实际的文件名进行修改。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* *3* [Python实现读取txt文件并转换为excel的方法示例](https://blog.csdn.net/weixin_39775872/article/details/110175755)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"] [ .reference_list ]

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值