摘要: 十六进制转汉字 public static string GetChsFromHex(string hex) { if (hex == null) throw new ArgumentNullException("hex"); if (hex.Length % 2 != 0) throw ... 阅读全文
posted @ 2008-06-04 10:45 凌点 阅读(5248) 评论(0) 推荐(0) 编辑
摘要: 利用.NET的 WebClient类 和 WebRequest类,我们可以很容易地得到给定URL地址的源代码。主要代码如下: GetPage.aspx: 程序代码 获取任意网页HTML代码 GetPage.aspx.cs... 阅读全文
posted @ 2008-06-04 10:43 凌点 阅读(2263) 评论(0) 推荐(0) 编辑