摘要:
方法一、System.Net.WebClient WebClientObj= new System.Net.WebClient();System.Collections.Specialized.NameValueCollection PostVars= new System.Collections.Specialized.NameValueCollection();PostVars.Add("A1... 阅读全文
摘要:
最近项目需要,需要在winform中模拟表单将数据提交至服务器,发现单独提交键值对很容易实现,单独实现上传文件也很容易实现。要是同时提交键值对和文件,比较麻烦。在百度谷歌了大半天没有任何收获。无奈之下,按照 黑月.Net的 的思路去自己写。经过奋斗 终于搞定。方法如下: public WebResponse SubmitData(string fileName, Uri uri, string[] keys, string[] values){string boundary = "----------" + DateTime.Now.Ticks.ToString("x");HttpWebReq 阅读全文