VB.NET Web浏览器到文本框
我需要帮助将所有文本从 WebBrowser1 获取到我的 textbox1.text
我尝试将
WebBrowser1.Navigate(TextBox3.Text)
TextBox1.Text = WebBrowser1.DocumentText
textbox3 作为我的网站 textbox1 是我想要的所有文本。
I need help getting all of the text from WebBrowser1 to my textbox1.text
I tried
WebBrowser1.Navigate(TextBox3.Text)
TextBox1.Text = WebBrowser1.DocumentText
textbox3 being my website
and textbox1 being were i want all the text.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须处理
WebBrowser
控件的DocumentCompleted
事件。You have to handle the
DocumentCompleted
event ofWebBrowser
control.我的解决方案:
My solution: