|
-
Oct 14th, 2003, 10:31 AM
#1
Thread Starter
New Member
doc.loadxml(axwebbrowser1.document.body.outerhtml), doesn't work?
I am automating the navigation of a website.
When I reach the end, it changes to xml.
So my axwebbrowser1 has a bunch of xml data in it.
So here is what I am trying to do
Dim xmlText As String
Dim doc As New XmlDocument()
Dim myElem As XmlElement
xmlText = AxWebBrowser1.Document.Body.OuterHTML
doc.LoadXml(xmlText)
But the problem is I get an exception error at the doc.loadxml(xmltext)
I found a streamreader example but I already have the xml data in the axwebbrowser control.
How do I get it so I can parse through the nodes?
Thanks for any information
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|