我想将文件上传到https服务器 我写了下面的代码来上传文件到https服务器。 但它给出错误:
远程服务器返回错误:(404)Not Found。
我的代码如下。检查代码中有什么问题?
try
{
using (WebClient webClient = new WebClient())
{
webClient.Credentials = new NetworkCredential(username, password);
string filePath = filepath;
webClient.UploadFile(@"https://us.itranscript.net:444/Upload/test.txt", "PUT", filePath);
webClient.Dispose();
}
}
catch (Exception err)
{
}
帮帮我