码迷,mamicode.com
首页 > 其他好文 > 详细

FileUpload1 在部分浏览器中实现多选

时间:2017-07-14 13:26:52      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:path   name   实现   ==   server   ifile   contex   text   扩展   

 <asp:FileUpload ID="FileUpload1" multiple runat="server" />

 

添加    multiple  这个就可以  

ie 不行   有些浏览器是可以支持的


        HttpFileCollection files = HttpContext.Current.Request.Files;
        for (int iFile = 0; iFile < files.Count; iFile++)
        {

            //检查文件扩展名字
            HttpPostedFile postedFile = files[iFile];
            string conentType = Path.GetExtension(postedFile.FileName).ToLower();
            if (conentType == ".jpg" || conentType == ".jpeg" || conentType == ".png" || conentType == ".bmp" || conentType == ".gif")
            {
             
            }
        }
      保存方法

FileUpload1 在部分浏览器中实现多选

标签:path   name   实现   ==   server   ifile   contex   text   扩展   

原文地址:http://www.cnblogs.com/njccqx/p/7169415.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!