摘要: 用C# WebClient类 提交WebClient是一个强大的类。提供向 URI 标识的资源发送数据和从 URI 标识的资源接收数据的公共方法。这也就意味着可以像网站发送数据。例如给网站留言,注册用户等等。。。。。。下面是自动注册的一个功能具体代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Net; 阅读全文
posted @ 2013-03-01 14:38 甜菜波波 阅读(591) 评论(0) 推荐(0) 编辑
摘要: private void WebClientButton_Click(object sender, System.EventArgs e){PageUrl = UrlText.Text;WebClient wc = new WebClient();wc.Credentials = CredentialCache.DefaultCredentials;///方法一:Byte[] pageData = wc.DownloadData(PageUrl);ContentHtml.Text = Encoding.Default.GetString(pageData);/// 方法二:/// ****** 阅读全文
posted @ 2013-03-01 11:46 甜菜波波 阅读(194) 评论(0) 推荐(0) 编辑