/ Forums / Advansys Formativ / Creating Solutions with Formativ / HtmlDom.loadfromurl problems / Reply To: HtmlDom.loadfromurl problems
August 29, 2007 at 5:59 pm
#7864
See the URL below for the DHTML properties and methods:
http://msdn2.microsoft.com/en-us/library/ms533050.aspx
For example, you need to use the innerhtml property to access the html.
set dom = Utilities.HTMLDom
dom.LoadFromURL("http://www.google.com")
set doc = dom.document
msgbox doc.body.innerhtml
set doc = nothing
set dom = nothing
Regards,
Advansys Support