摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Web;using System.Net;using Sy... 阅读全文
posted @ 2010-01-26 14:48 努力实现目标 阅读(2014) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections;using System.Collections.Specialized;using System.Data;using System.Data.SqlClient;using System.Configuration;namespace WebBee{ /// <summary> /// Copyright ... 阅读全文
posted @ 2010-01-26 14:46 努力实现目标 阅读(1307) 评论(1) 推荐(0) 编辑
摘要: public string GetHtmlSource(string Url, string charset) //得到Html源代码 { if (charset == "" || charset == null) charset = "gb2312"; string text1 = ""; try { HttpWebRequest request1 = (HttpWebRequest)WebR... 阅读全文
posted @ 2010-01-26 14:45 努力实现目标 阅读(565) 评论(0) 推荐(0) 编辑
摘要: C#收集网页中的EMail实现源码: //CAll private void GetAllURL(string urlStr) { new Thread(new ParameterizedThreadStart(GetEmailAddress)).Start(urlStr); ... //处理页面中的Link } /**//// <summary> /// 提取网页中的Eamil... 阅读全文
posted @ 2010-01-26 14:44 努力实现目标 阅读(554) 评论(0) 推荐(1) 编辑