摘要: public static string PostData(string p_strUrl, string p_strData) { Encoding dataEncode; dataEncode = System.Text.Encoding.UTF8; byte[] byteArray = dataEncode.GetBytes(p_strData); //转化 HttpWebRequest http = (HttpWebRequest)WebRequest.Create(p_strUrl); http.Method = "POST"; http.ContentType 阅读全文
posted @ 2012-12-06 09:30 bert.zeng 阅读(316) 评论(0) 推荐(0)