POST以文件流的方式发送 和接收
摘要:
以文件流的方式发送 和接收 postData += ("&hashcode=" + GetMD5String(pwd)); //byte[] data = encoding.GetBytes(postData); byte[] data = System.Text.Encoding.UTF8.GetBytes(postData); // Prepare web request... HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create("url"); myRequest.Meth 阅读全文
posted @ 2013-11-07 17:36 峰翼 阅读(3019) 评论(0) 推荐(1) 编辑