c# – 使用文件上传控件过滤文件类型

前端之家收集整理的这篇文章主要介绍了c# – 使用文件上传控件过滤文件类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用文件上传控件在asp.net& C#.NET

例如,点击文件上传控件的浏览按钮,应该打开只有excel文件类型的浏览文件对话框.

这怎么可能

解决方法

这是另一个论坛的答案

如果您使用C#(或VB,net)和.net fileupload控件,我觉得很容易实现.您可以在arraylist“allowedExtensions”中定义文件类型.

string upload_Image(FileUpload fileupload,string ImageSavedPath)
{
    FileUpload fu = fileupload;  
    string imagepath = "";
    if (fileupload.HasFile)
    {
        string filepath = Server.MapPath(ImageSavedPath);  
        String fileExtension = System.IO.Path.GetExtension(fu.FileName).ToLower();
        String[] allowedExtensions = { ".gif",".png",".jpeg",".jpg" };
        for (int i = 0; i < allowedExtensions.Length; i++)
        {
            if (fileExtension == allowedExtensions[i])
            {
                try
                {
                    string s_newfilename = DateTime.Now.Year.ToString() +
                        DateTime.Now.Month.ToString() + DateTime.Now.Day.ToString() +
                        DateTime.Now.Hour.ToString() + DateTime.Now.Minute.ToString() +                           DateTime.Now.Second.ToString() +  fileExtension; 
                        fu.PostedFile.SaveAs(filepath + s_newfilename);

                   imagepath = ImageSavedPath + s_newfilename;
               }
               catch (Exception ex)
               {
                   Response.Write("File could not be uploaded.");
               }

           }

       }

   }
   return imagepath;
}
原文链接:https://www.f2er.com/csharp/93194.html

猜你在找的C#相关文章