本文介绍了从Windows应用程序上传文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想开发一个窗口应用程序,我的用户可以在其中将文件上传到Web服务器上.为此,我尝试了System.net.webclient
i want to develop a window application where my user can upload file on webserver. for this i tried System.net.webclient
// try
// {
// System.Net.WebClient wc = new System.Net.WebClient();
// wc.Credentials = new System.Net.NetworkCredential("id", "password");
// wc.UploadFile("url,"filetoupload");
// }
// catch (Exception exx)
// {
// MessageBox.Show(exx.ToString());
// }
但它不起作用.我从服务器收到404或405错误..plz帮助我完成任务..
but it does not work.i am getting 404 or 405 error from server..plz help me to accomplish task..
推荐答案
这篇关于从Windows应用程序上传文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!