MadGoat's Blog

导航

2006年10月16日 #

Here's how to do a post using c#

摘要: private string HttpPost(string URI, string Parameters) { System.Net.WebRequest req = System.Net.WebRequest.Create(URI); req.Proxy = new System.Net.WebProxy(ProxyString, true); req.ContentType = ... 阅读全文

posted @ 2006-10-16 17:39 MadGoat 阅读(154) 评论(0) 推荐(0) 编辑