使用asp.net中的fileupload控件上传文件

发布于 2024-11-04 05:37:30 字数 422 浏览 1 评论 0原文

我想使用 asp.net 中的 FileUpload 控件上传文件,我使用以下代码来执行此操作:

string filename1 = System.IO.Path.GetFileName(FileUploadControl.FileName);
FileUploadControl.SaveAs("C:\\Users\\admin\\Desktop\\ExperimentForFolder\\" + filename1);

我也尝试过,

FileUploadControl.SaveAs(@"C:\Users\admin\Desktop\ExperimentForFolder\" + filename1);

但它仍然很糟糕。我不明白出了什么问题。你能帮我一下吗?

感谢期待

I want to upload a file using FileUpload Control in asp.net and i'm using the following code to do that:

string filename1 = System.IO.Path.GetFileName(FileUploadControl.FileName);
FileUploadControl.SaveAs("C:\\Users\\admin\\Desktop\\ExperimentForFolder\\" + filename1);

i also tried

FileUploadControl.SaveAs(@"C:\Users\admin\Desktop\ExperimentForFolder\" + filename1);

But it is still freaking out. I don't understand what is wrong. Can you please help me.

Thanks in anticipation

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

眸中客 2024-11-11 05:37:30

为什么需要将文件保存到计算机的桌面上?

您的最终选择应该是使用您的应用程序文件夹。它可以像...

FileUpload1.SaveAs(Server.MapPath("~/AppFolderName/" + FileName));

Why do you need to save the file to your machine's Desktop?

Your ultimate option should be to use your Application Folder. It can be done like...

FileUpload1.SaveAs(Server.MapPath("~/AppFolderName/" + FileName));
三寸金莲 2024-11-11 05:37:30

您需要对存储文件的位置有权限...不要存储在服务器桌面中。

尝试开始:

FileUploadControl.SaveAs(Server.MapPath(filename1));

这会将文件存储在与您的 .aspx 文件相同的位置,如果它有效,您可以在那里创建单独的文件夹,然后将代码更改为:

FileUploadControl.SaveAs(Server.MapPath("ExperimentForFolder/" + filename1));

You need permissions over the place you store the file into... don't store in the server desktop.

Try this for start:

FileUploadControl.SaveAs(Server.MapPath(filename1));

This will store the file in the same place as your .aspx file, if it works you can then create separate folder there then change the code to:

FileUploadControl.SaveAs(Server.MapPath("ExperimentForFolder/" + filename1));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文