摘要: c# 以post方式发送数据/// /// POST请求 /// /// 请求地址 /// 请求值 /// 编码格式 /// public string GetHttpPostResponse(string url, string val, Encoding encoding) { string strResult = string.Empty; try { HttpWebRequest myReq = (HttpWebRequest)HttpWebRequest.Create... 阅读全文
posted @ 2013-06-24 13:55 王洪洪 阅读(3878) 评论(0) 推荐(0) 编辑