获取http请求
摘要:
public string GetUrlDate(string url, string method, string content) { stringoutstring = ""; try { System.Net.HttpWebRequest myRequest = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(url); myRequest.Method = method; myRequest.KeepAlive = false; myRequest.ContentType = "application/x-www 阅读全文
posted @ 2010-08-31 23:16 linzheng 阅读(1090) 评论(0) 推荐(0) 编辑