web站点用html的<input type="file" id="myFile" runat="SERVER" NAME="myFile">根本就无法上传多个文件,有没有一个方法跟这个相似的,不过可用,shift,ctrl连选文件。然后上传。最好是现实像sharepoint那样点击弹出本地资源管理器插件,然后把要上传的文件打勾,点Button后上传到服务器。大侠帮忙!!!!

解决方案 »

  1.   

    前台
    <%@ Page language="c#" Codebehind="upMoreFile.aspx.cs" AutoEventWireup="false" Inherits="CommonFunction.upMoreFile" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
    <HTML>
    <HEAD>
    <title>upMoreFile</title>
    <meta content="Microsoft Visual Studio 7.0" name="GENERATOR">
    <meta content="C#" name="CODE_LANGUAGE">
    <meta content="JavaScript" name="vs_defaultClientScript">
    <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
    <script language="JavaScript">
        function addFileControl()
        {
         var str = '<INPUT type="file" NAME="File">'
         document.getElementById('FileCollection').insertAdjacentHTML("beforeEnd",str)
        }
    </script>
    </HEAD>
    <body MS_POSITIONING="GridLayout">
    <form id="upMoreFile" method="post" encType="multipart/form-data" runat="server">
    <asp:label id="Title" Runat="server"></asp:label>
    <P id="FileCollection"><INPUT type="file" name="File">
    </P>
    <P><input onclick="addFileControl()" type="button" value="增加(File)">
    <asp:button id="Upload" Runat="server" Text="上传" Width="56px"></asp:button><input style="WIDTH: 56px; HEIGHT: 24px" onclick="this.form.reset()" type="button" value="重置">
    </P>
    <P align="center"><asp:label id="strStatus" runat="server" BorderColor="White" BorderStyle="None" Width="500px"
    Font-Size="9pt" Font-Bold="True" Font-Names="宋体"></asp:label></P>
    </form>
    </body>
    </HTML>
    后台:
    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 CommonFunction
    {
    /// <summary>
    /// upMoreFile 的摘要说明。
    /// </summary>
    public class upMoreFile : System.Web.UI.Page
    {
    protected System.Web.UI.WebControls.Button Upload;
    protected System.Web.UI.WebControls.Label Title;
    protected System.Web.UI.WebControls.Label strStatus;

    private void Page_Load(object sender, System.EventArgs e)
    {
    Title.Text = "<h3>多文件上传</h3>";
    Upload.Text = "开始上传";
    } #region Web Form Designer generated code
    override protected void OnInit(EventArgs e)
    {
    //
    // CODEGEN:该调用是 ASP.NET Web 窗体设计器所必需的。
    //
    InitializeComponent();
    base.OnInit(e);
    }

    /// <summary>
    /// 设计器支持所需的方法 - 不要使用代码编辑器修改
    /// 此方法的内容。
    /// </summary>
    private void InitializeComponent()
    {    
    this.Upload.Click += new System.EventHandler(this.Upload_Click);
    this.Load += new System.EventHandler(this.Page_Load); }
    #endregion private void Upload_Click(object sender, System.EventArgs e)
    {
    upMorefile();
    } private bool upMorefile()
    {
    //遍历File表单元素
    System.Web.HttpFileCollection files = System.Web.HttpContext.Current.Request.Files;
    //状态信息
    System.Text.StringBuilder strMsg = new System.Text.StringBuilder("上传的文件信息分别为:<hr color=red>");
    int fileCount;
    int filecount = files.Count;
    try
    {
    for(fileCount = 0;fileCount<files.Count;fileCount++)
    {
    //定义访问客户端上传文件的对象
    System.Web.HttpPostedFile postedFile = files[fileCount];
    string fileName, fileExtension;
    //取得上传得文件名
    fileName = System.IO.Path.GetFileName(postedFile.FileName);
    if(fileName != String.Empty)
    {
    //取得文件的扩展名
    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 color=red>");
    //保存到指定的文件夹
    postedFile.SaveAs(Server.MapPath("upedFile/") + fileName);
    }
    }
    strStatus.Text = strMsg.ToString();
    return true;
    }
    catch(System.Exception error)
    {
    strStatus.Text = error.Message;
    return false; }
    }
    }
    }
      

  2.   

    不错 ,Up~
    hoowoo(ASP.NET 2.0学习中)实现的是一般邮箱发送附件的效果
    应该能满足应用的要求了