MSHTML 教程
我想学习一些有关 MSHTML 的基础知识,例如如何使用 IHtmlDocument 和 IHtmlDocument2 接口。 我找了好久,没有找到适合初学者的教程。 有人可以推荐一些读的东西吗?
编辑:我更喜欢使用 C#。
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#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当我学习使用 MSHTML 时,我主要依赖 MSDN 文档并在新闻组和此类网站中询问具体细节。
它还帮助我下载整个 Windows SDK 而不是在线阅读。
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.
如果您使用 C#,那么您不应该使用 MSHTML。 如果您使用 Windows 窗体,请使用 WebBrowser 组件;如果您尝试生成 HTML(如 XHTML),请使用任何 XML API。 您可能想要使用 HtmlWriter,但如果可以的话,请远离非托管代码。
链接:
顺便说一句,MSHTML 不是一个新事物 - 它是一个旧事物。
BTW2,这是 George2?
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?
IE SDK 文档的“托管和重用”部分下有一些教程。 但我想您还需要阅读 HTML/CSS 部分下的 DHTML 教程。
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.