MSHTML tutorial [closed]

2019-04-08 19:03发布

I want to learn some basics about MSHTML, like how to use IHtmlDocument and IHtmlDocument2 interfaces. I searched for quite a while, but can not find out a tutorial for beginners. Could anyone recommend something to read?

EDIT: I prefer to use C#.

3条回答
smile是对你的礼貌
2楼-- · 2019-04-08 19:48

There are some tutorials under the "hosting and reuse" section of IE SDK documentation. But I guess you need to read the DHTML tutorials under the HTML/CSS section as well.

查看更多
霸刀☆藐视天下
3楼-- · 2019-04-08 19:54

When I was learning to use MSHTML I mostly relied on the MSDN documentation and asked specific details in newsgroups and sites like this.

It also helped me alot to download the whole Windows SDK instead of reading online.

查看更多
beautiful°
4楼-- · 2019-04-08 20:03

If you are using C#, then you should not be using MSHTML. Use the WebBrowser component if you're using Windows Forms, use any of the XML APIs if you're trying to generate HTML (as XHTML). You might possibly want to use an HtmlWriter, but stay away from unmanaged code, if you can help it.


Links:

BTW, MSHTML is not a new thing - it's an old thing. BTW2, is this the George2?

查看更多
登录 后发表回答