本文介绍了如何将图像附加到Webbrowser(MSHTML)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

private mshtml.IHTMLDocument2 docs;
docs = (mshtml.IHTMLDocument2)this.webBrowser1.Document.DomDocument;
            docs.designMode =On;
            docs.write("");
            docs.close();
docs.writeln("<img src=\"http://www.devlounge.net/wp-content/uploads/2009/08/codeproject.jpg\" alt=\"right\" align=\"right\" title=\"right\">");



图片未显示



Picture is not dispalayed

推荐答案


这篇关于如何将图像附加到Webbrowser(MSHTML)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-27 04:57