zoukankan      html  css  js  c++  java
  • 轻松实现一个页面多文件上传

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;

    namespace FileIO
    {
        
    public partial class uploadFile : System.Web.UI.Page
        {
            
    protected void Page_Load(object sender, EventArgs e)
            {

            }

            
    protected void Button1_Click(object sender, EventArgs e)
            {
                
    string path = Server.MapPath("~/upload/");
                HttpFileCollection uploadFiles 
    = Request.Files;
                
    for (int i = 0; i < uploadFiles.Count; i++)
                {
                    HttpPostedFile userPostedFile
    =uploadFiles[i];
                    
    try
                    {
                        
    if (userPostedFile.ContentLength > 0)
                        {
                            userPostedFile.SaveAs(path 
    + userPostedFile.FileName);
                        }
                    }
                    
    catch (Exception)
                    {
                        
                        
    throw;
                    }
                }
               
            }
        }
    }
    Code
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="uploadFile.aspx.cs" Inherits="FileIO.uploadFile" %>

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

    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
        
    <title></title>
    </head>
    <body>
        
    <form id="form1" runat="server">
        
    <div>
        
            
    <asp:FileUpload ID="FileUpload1" runat="server" /><br />
            
    <asp:FileUpload ID="FileUpload2" runat="server" /><br />
            
    <asp:FileUpload ID="FileUpload3" runat="server" /><br />
            
    <asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="upload" />
        
        
    </div>
        
    </form>
    </body>
    </html>
  • 相关阅读:
    德阳机场大巴
    “以前进行的程序安装创建了挂起的文件操作。运行程序之前,必须重新起动计算机。”的解决办法
    Web程序中网页间数据传递方法小结
    转向姚BLOG
    用ASP.NET在IIS中创建虚拟目录
    TreeView 点击Nodes属性出现“指定的转换无效”错误
    该页正在访问其控制范围之外的数据。这有些危险。是否继续?
    JS的Trim
    JS简明中文教程
    电子数据交换
  • 原文地址:https://www.cnblogs.com/shineqiujuan/p/1528196.html
Copyright © 2011-2022 走看看