利用.NET框架提供的 WebClient类 和 WebRequest类,我们可以很轻易地得到给定URL地址的源代码 代码片段: 1 private void WebClientButton_Click(object sender, System.EventArgs e) 2 { 3 PageUrl = UrlText.Text; 4 WebClient wc = ... Read More
posted @ 2008-06-12 13:37 小伙子 Views(207) Comments(0) Diggs(0) Edit
http://orangoo.com/labs/greybox/installation.html Read More
posted @ 2008-06-12 13:16 小伙子 Views(345) Comments(0) Diggs(0) Edit
浅析.Net下的多线程编程 多线程是许多操作系统所具有的特性,它能大大提高程序的运 行效率,所以多线程编程技术为编程者广泛关注。目前微软的.Net战略正进一步推进,各种相关的技术正为广大编程者所接受,同样在.Net中多线程编程技 术具有相当重要的地位。本文我就向大家介绍在.Net下进行多线程编程的基本方法和步骤。 开始新线程 在.N... Read More
posted @ 2008-06-12 13:10 小伙子 Views(254) Comments(0) Diggs(0) Edit