Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 C# 中使用 php POST 方法发送 csv 文件。我正在使用 WebClient。我知道如何上传文件。但我不知道如何将发送文件与 NameValueCollection 中的其他参数结合起来。
我必须发送一些参数和额外的 CSV 文件。我如何在 C# 中做到这一点?
没有“PHP POST”,只有 POST 或 GET(它们是 HTTP 请求的一部分,就像许多命令动词一样)。您应该考虑使用HttpWebRequest以便通过 POST 发送数据。