本文介绍了Web浏览器控制VB的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

我将一个html内容从richtextbox传递到webbrowsercontrol

WebBrowser1.DocumentText = richtextbox1.Text



和web控件是显示已转换的HTML。好!!



但它不允许我在webbrowser控件中编辑转换后的html(比如更改消息)。

when我用



WebBrowser1.Document.ExecCommand(EditMode,False,DBNull.Value)



这清除了webbrowser控件中允许我写的所有内容。



我知道如何在webbrowercontrol中编辑我的消息?

解决方案



添加图片

I am passing a html content from a richtextbox to webbrowsercontrol
WebBrowser1.DocumentText = richtextbox1.Text

and the web control is showing converted HTML. Good !!

but it is not allowing me to edit the converted html (like to change the message) in webbrowser control.
when i use

WebBrowser1.Document.ExecCommand("EditMode", False, DBNull.Value)

this clears off everything in the webbrowser control allowing me to write.

Any idea how i can edit my message in webbrowercontrol ?

解决方案




这篇关于Web浏览器控制VB的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-06 13:38