MSHTML tutorial [closed]

微笑、不失礼 提交于 2019-12-21 17:02:22

问题


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#.


回答1:


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.




回答2:


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:

  • WebBrowser Control (Windows Forms)
  • HtmlTextWriter Class (System.Web.UI)
  • http://social.msdn.microsoft.com/Search/en-US/?query=mshtml%20tutorial&ac=1

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




回答3:


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.



来源:https://stackoverflow.com/questions/669236/mshtml-tutorial

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!