摘要: StringBuilder sb = new StringBuilder("data=1");byte[] bytes = Encoding.UTF8.GetBytes(sb.ToString());WebRequest req = WebRequest.Create("http://baidu.c... 阅读全文
posted @ 2012-12-27 15:17 y0umer 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 内容比较简单,直接看代码的注释即可。// 待请求的地址string url = "http://www.cnblogs.com"; // 创建 WebRequest 对象,WebRequest 是抽象类,定义了请求的规定,// 可以用于各种请求,例如:Http, Ftp 等等。... 阅读全文
posted @ 2012-12-27 14:59 y0umer 阅读(256) 评论(0) 推荐(0) 编辑