问题描述
我将一个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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!