程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> .net中mshtml處理html的方法

.net中mshtml處理html的方法

編輯:ASP.NET基礎

1.添加引用.net 引用Microsoft.mshtml

WebClient wc = new WebClient();
wc.Encoding = Encoding.UTF8;
string str = wc.DownloadString(@"http://www.jb51.net/web/73969.html");

HTMLDocumentClass doc = new HTMLDocumentClass();//獲取html對象
doc.designMode = "on"; //不讓解析引擎去嘗試運行javascript
doc.IHTMLDocument2_write(str);把html 文檔寫入html對象中
doc.close();關閉寫流
Console.WriteLine(doc.title);輸出標題
Console.WriteLine(doc.body.innerText); 輸出body
Console.ReadKey();

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved