ASP.NET 和 C# 文件上传 - 我的代码有什么问题

问题描述 投票:0回答:1
c# asp.net file-upload controls basic
1个回答
0
投票

我建议使用“~”,这意味着从网站的根目录开始。

因此,这个:

    void addnewclient()
    {
        string sFile = Server.MapPath(@"~/docs/") + client_tax_photo.FileName;

        client_tax_photo.SaveAs(sFile);
    }

所以,上面将解决:

  https://MySiteName.com/docs/"file name"
© www.soinside.com 2019 - 2024. All rights reserved.