winform 使用 webclient 上传
摘要:
public void ProcessRequest(HttpContext context) { HttpPostedFile file = context.Request.Files[0]; file.SaveAs(context.Server.MapPath("~/uploadimages/") + file.FileName); } string strurl = "http://localhost/Provider/HandlerUpImage.ashx"; ... 阅读全文
posted @ 2013-06-10 09:26 gwazy 阅读(517) 评论(0) 推荐(0) 编辑