添加引用http://htmlagilitypack.codeplex.com/downloads/get/437941protected
void Export(string content,string file) { HtmlDocument doc = new HtmlD...
分类:
Web程序 时间:
2014-07-22 23:17:32
阅读次数:
426
DOM(Document Object Model),文件对象模型。HTML(HyperText Markup Language),超文本标记语言。HTML的超类:Node->Document;Node->Element->HTMLElement。HTML的元素:HTMLDocument/HTMLB...
分类:
Web程序 时间:
2014-06-20 20:18:24
阅读次数:
318
原文:点击鼠标获取元素IDpublic partial class Form1 : Form{ public Form1() { InitializeComponent(); } private mshtml.HTMLDocument doc = null; private void Form1_L...
分类:
其他好文 时间:
2014-06-14 08:39:07
阅读次数:
230
/// /// 返回指定WebBrowser中图片中的图内容/// ///
WebBrowser控件/// IMG元素/// IMG对象private Image GetWebImage(WebBrowser WebCtl,
HtmlElement ImgeTag){ HTMLDocument...
分类:
Web程序 时间:
2014-06-13 16:58:24
阅读次数:
427
document对象作为HTMLDocument的一个实例,它还有一些标准的Document对象所没有的属性,这些属性提供了网页上的一些信息
//取得文档标题var title1=document.title; //修改文档标题document.title="New page title"; ...
分类:
编程语言 时间:
2014-05-26 19:16:16
阅读次数:
277
获取滚动条的位置:
HtmlDocument document = WB1.Document;
int top = document.GetElementsByTagName("HTML")[0].ScrollTop;//滚动条垂直位置
指定滚动条滚动到指定位置
WB1.Document.Window.ScrollTo(0, 100);//滚动到100的位置
WB1.Docume...
分类:
Web程序 时间:
2014-05-22 09:55:21
阅读次数:
326
体验js的魅力。js写入 htmldocument.write("This is a
heading");document.write("This is a
paragraph");完整代码:JavaScript:对事件作出反应点击这里alert() 函数在 JavaScript 中并不常用,但它对...
分类:
其他好文 时间:
2014-05-21 19:59:25
阅读次数:
213
IHTMLDocument2 *pDoc;
IHTMLElementCollection *objAllElement;
HRESULT hr;
CoInitialize(NULL);
hr = CoCreateInstance(CLSID_HTMLDocument, NULL, CLSCTX_INPROC_SERVER,
IID_IHTMLDocument2, (void**)&pDoc);...
分类:
Web程序 时间:
2014-05-21 07:47:48
阅读次数:
382