2007年6月20日
摘要: //获得链接 public ArrayList GetHyperLinks(string htmlCode) { ArrayList al = new ArrayList(); string strRegex = ""; int startp, endp; ... 阅读全文
posted @ 2007-06-20 13:52 hzman 阅读(255) 评论(0) 推荐(0) 编辑
摘要: public string checkStr(string html) { System.Text.RegularExpressions.Regex regex1 = new System.Text.RegularExpressions.Regex(@"标记 html = regex2.Replace(html, ""); //过滤href=javascri... 阅读全文
posted @ 2007-06-20 13:49 hzman 阅读(473) 评论(0) 推荐(0) 编辑
摘要: 1、DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月 int 月=currentTime.Month; 1.4 取当前日 int 日=curre... 阅读全文
posted @ 2007-06-20 11:04 hzman 阅读(213) 评论(0) 推荐(0) 编辑
  2007年6月12日
摘要: protected bool robot() { bool brtn = false; string king_robots = "Baiduspider+@Baidu|Googlebot@Google|ia_archiver@Alexa|IAArchiver@Alexa|ASPSeek@ASPSeek|YahooSeeker@Yahoo|sohu-search... 阅读全文
posted @ 2007-06-12 09:42 hzman 阅读(1194) 评论(3) 推荐(0) 编辑
  2006年11月24日
摘要: 第一步:点击“开始→运行”,键入“CMD”(不包含引号)回车打开“命令行提示”,然后在其中执行“Rundll32 setupapi,InstallHinfSection Ndi-Steelhead 132 %windir%\inf\netrass.inf”命令。第二步:重启Windows XP,然后重新打开“命令行提示”,键入“Netsh firewall reset”命令并回车。第三步:运行“C... 阅读全文
posted @ 2006-11-24 14:06 hzman 阅读(3947) 评论(1) 推荐(0) 编辑
摘要: 示列代码 1.定义(template.htm)html模板页面 $htmlformat[3] ... 阅读全文
posted @ 2006-11-24 10:25 hzman 阅读(602) 评论(0) 推荐(0) 编辑
  2006年11月21日
摘要: 一、什么是代理 在计算机词汇中,代理的全称为代理服务器(Proxy Server),其功能就是代理网络用户去取得网络信息。 形象的说,它是网络信息的中转站。在一般情况下,我们使用网络浏览器直接去连接其它Internet站点取得网络信息时,须送出请求(Request)信号来获得回答,然后对方再把信息以字节的方式传送回来。HTTP代理服务器是介于客户浏览器和Web服务器之间的一台服务器,有了... 阅读全文
posted @ 2006-11-21 19:56 hzman 阅读(10532) 评论(0) 推荐(0) 编辑
  2006年11月19日
摘要: C#是.Net平台的通用开发工具,它能够建造所有的.Net应用。在.Net中所有线程都运行在应用程序域(AppDomain)中,这也许让你想到Win32进程,实际上它们还是有很大的不同。应用程序域提供了一种安全而通用的处理单元,公共语言运行库可使用它来隔离应用程序。注意在.Net中应用程序的隔离是应用程序域而不是进程,在单个进程中可以存在几个应用程序域,而且线程可以跨越应用程序域的范围,某个线程中... 阅读全文
posted @ 2006-11-19 00:21 hzman 阅读(548) 评论(0) 推荐(0) 编辑
摘要: C#提供了Mutex与Interlocked这两个与线程相关的类,都在Threading命名空间下~! Mutex中提供了WiteOne,ReleaseMutex 两个实例方法~ WiteOne的作用是"阻塞当前线程,提供对该线程的原子操作" 也就是说当一个线程遇到WiteOne的时候,如果在WiteOne里面没有线程在操作,则此线程进去操作 而里面有线程的时候,所有到此的线程均需要排队等候里面的... 阅读全文
posted @ 2006-11-19 00:13 hzman 阅读(696) 评论(1) 推荐(0) 编辑
摘要: 下面是代码,希望大家提出更好的建议:1.ThreadManager.cs using System; using System.Threading; using System.Collections; namespace CustomThreadPool { /// /// 线程管理器,会开启或唤醒一个线程去执行指定的回调方法 /// public clas... 阅读全文
posted @ 2006-11-19 00:02 hzman 阅读(2204) 评论(1) 推荐(1) 编辑