分享

asp.net文件批量上传

 趋明 2012-03-30

asp.net文件批量上传  

2010-10-22 10:14:11|  分类: asp.net |  标签: |字号 订阅

html代码

<script language="javascript" type="text/javascript">   
  function addFile()
  {
    //创建输入元素(通用代码)
    //添加上传文件按钮
    var fileUpLoadbutton = document.createElement("input");
    fileUpLoadbutton.setAttribute("type","file");
    fileUpLoadbutton.setAttribute("size","50");
    fileUpLoadbutton.setAttribute("name","File");
    fileUpLoadbutton.setAttribute("class","ButtonCss");
    //添加删除按钮
    var deleteImgbutton = document.createElement("img");
    deleteImgbutton.setAttribute("src","../images/pic22.gif");
    deleteImgbutton.setAttribute("style","width: 20px; height: 20px");
    //给
    deleteImgbutton.onclick=function(){deleteRow(1,this);};

   
    var lastIndex= document.getElementById('FileList').childNodes.length-1;
   
   
     if(lastIndex>-1)
     {
        var hideFile=document.getElementById('FileList').childNodes[lastIndex];
       
         if(hideFile.value=="")
         {
            return;
         }
       
        hideFile.style.display="none";
        var cell1 = document.createElement("td");
        var cell2 = document.createElement("td");  
       // var str = hideFile.value;
        var myList =new Array();
        myList=  hideFile.value.split("\\");
        cell1.innerHTML = myList[myList.length-1];// hideFile.value;      
        cell2.appendChild(deleteImgbutton);
        var row = document.createElement("tr");
        row.appendChild(cell1);
        row.appendChild(cell2);
        var tBody = document.createElement("tbody").appendChild(row);
        //识别当前浏览器
        if(navigator.appName.indexOf("Explorer") > -1)
        {
            document.getElementById("FileTable").childNodes[0].appendChild(tBody);
        }
        else
        {
            document.getElementById("FileTable").appendChild(tBody);
        }  
     }
    
     document.getElementById('FileList').appendChild(fileUpLoadbutton);
  }
 
   function deleteRow(targPos,btnObj)
    {
       var tabObj=document.getElementById("FileTable");
       
        var fileListLength = document.getElementById('FileList').childNodes.length;
       
        var tabRowsLength = tabObj.rows.length;
        
        for(var i =0;i<tabRowsLength;i++)
        {
            if(tabObj.getElementsByTagName('img')[i]==btnObj)
            {
                 //删除当前选中行
                tabObj.deleteRow(i+targPos);
                //获得选中行对应的上传我文件对象
                var oldChild = document.getElementById('FileList').childNodes[i];
                //删除上传文件对象
                document.getElementById('FileList').removeChild(oldChild);
             
            }         
        }
  }
    </script>
    <div class="admin_title">
        上传文件
    </div>
    <div>
         <table border="0" cellpadding="0" cellspacing="0" width="100%">
            <tr>
                <td align="left" valign="middle" class="style1">
                   <div id="FileList"><input id="File1" runat="server" name="File" size="50" type="file" /></div>
                </td>
                <td>
                   <input id="Button1" onclick="addFile()" size="26" style="height: 26px" type="button" value="增加文件" />
                </td>
            </tr>
        </table>
         <table style="width:100%"  id="FileTable">
        
            <tr>
                <td style="width:60%">文件名称</td>
                <td style="width:40%">删除文件</td>
            </tr>
        </table>
            <table border="0" cellpadding="0" cellspacing="0" height="26" width="100%">
            <tr>
                <td align="left" valign="middle">
                    <asp:Button ID="Button2" runat="server" OnClick="Button2_Click" Text="提交" />
                  
                   </td>
            </tr>
               
        </table>
    </div>

后台CS代码

    protected void Button1_Click(object sender, EventArgs e)
    {
        string strmessage = "";
        /**/
        /////附件
        HttpFileCollection fileList = HttpContext.Current.Request.Files;
        //保存附件
        for (int i = 0; i < fileList.Count; i++)
        {   /**////添加单个附件
            HttpPostedFile file = fileList[i];
            if (file.FileName.Length <= 0 || file.ContentLength <= 0)
            {
                break;
            }
            // 保存附件到硬盘中
            file.SaveAs(MapPath("../SaveFile/" + Path.GetFileName(file.FileName)));

       }
   }

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多