Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
dw1() が webbrowser.document を返す場合、私はできることを知っています:
dw1.body.outerhtml
本体のouterhtmlを取得します。それだけです、ボディ、ヘッダーなど。
ドキュメント全体の html を取得したい場合はどうなりますか?
Webbrowser コントロールにアクセスできる場合は、次のDocumentTextプロパティを使用できます。
DocumentText
Private Sub WebBrowser1_DocumentCompleted(sender As Object, e As WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted MessageBox.Show(WebBrowser1.DocumentText) End Sub