[此文来源于互联网,牛C网只负责收集整理]
这里有个 非常好的分析 html的 类。
节约了不少时间。
项目地址
http://www.codeplex.com/Wiki/View.aspx?ProjectName=htmlagilitypack
For example, here is how you would fix all hrefs in an HTML file:
HtmlDocument doc = new HtmlDocument();
doc.Load("file.htm");
foreach(HtmlNode link in doc.DocumentElement.SelectNodes("//a@href")
{
HtmlAttribute att = link"href";
att.Value = FixLink(att);
}
doc.Save("file.htm");
If you want to participate to the project - because that's the whole purpose of putting the source there, right - use the forums or drop me a note (simon underscore mourier at hotmail dot com)!
Happy coding, scraping, scanning, html-ing, xhtml-ing, etc... :^)
Simon Mourier.
作者:gdgzboy@牛C网
地址:http://www.niuc.net/post/2491/
版权所有。转载时必须以链接形式注明作者和原始出处及本声明!
牛C网推荐您再看看以下日志:
VB.net 调用带参数存储过程
关于C#中的DLLImport
用 ASP.NET 2.0 改进的 ViewState 加快网站速度
C#网络应用编程基础练习题与答案(十)
用ASP.NET2.0如何随机读取Access记录?
利用Visual C#实现ICMP网络协议
ASP.NET 1.1 无 Cookie SessionID 重写
选择 VB.NET 还是 C# ?
动态修改.Net StreamReader Encoding编码
ASP.NET Forums 页面模型分析
VB.net 调用带参数存储过程
关于C#中的DLLImport
用 ASP.NET 2.0 改进的 ViewState 加快网站速度
C#网络应用编程基础练习题与答案(十)
用ASP.NET2.0如何随机读取Access记录?
利用Visual C#实现ICMP网络协议
ASP.NET 1.1 无 Cookie SessionID 重写
选择 VB.NET 还是 C# ?
动态修改.Net StreamReader Encoding编码
ASP.NET Forums 页面模型分析
在.Net 里用XPath的case-insensitive 的查询
ADO.NET 2.0-如何排除错误信息





