本文介绍了如何在asp.net文件夹中保存文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我想使用filebrowser将文件保存在服务器的文件夹中为此我已编写代码为


I want to save file in folder in the server using filebrowser for this i have written code as

try
        {
            DirectoryInfo dir = new DirectoryInfo(Server.MapPath("UploadImages"));
           foreach(FileInfo files in dir.GetFiles())
           {

            files.Delete();

           }

            if (FileUpload2.HasFile)
            {
                string strImagePath = FileUpload2.PostedFile.FileName.ToString();
                imagename = strImagePath;
                FileUpload2.PostedFile.SaveAs(Server.MapPath("UploadImages\\" + strImagePath));
                if (FileUpload2.PostedFile.ContentLength > 2451281)
                {
                    //spanError.InnerText = "Invalid Size";
                    //  UpLoadValidator.Visible = false;
                    //  RequiredFieldValidator3.ErrorMessage = "";
                    //  return;
                }
                else
                {
                    spanError.InnerText = "";
                    //UpLoadValidator.Visible = false;

                    Session["fileByte"] = FileUpload2.FileBytes;

                    ScriptManager.RegisterStartupScript(this, this.GetType(), "starScript", "closePopUp();", true);

                    //  ScriptManager.RegisterStartupScript(this, this.GetType(), "starScript", "closePopUp(" + .Value + ");", true);

                }


               // ScriptManager.RegisterStartupScript(this, this.GetType(), "starScript", "alertshow();", true);
            }
        }
        catch (Exception ex)
        {
            throw ex;
        }



此代码对我有用,但问题是当我在其他计算机(pc)中复制我的相同代码时代码无法正常工作。代码仅适用于我的电脑而不是其他。

它给了我错误

不支持给定路径'的格式

推荐答案


这篇关于如何在asp.net文件夹中保存文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 09:29