Click to See Complete Forum and Search --> : I don't know what to do!!!
VIP3R
Nov 4th, 2000, 02:23 PM
Hey, i have a small problem with a frameset! I have two frames on one page and I want to get the InnerHtml of the second frame. How do I do that!
Skateboarder
Nov 5th, 2000, 12:42 PM
I know a lot about HTML but I'm not quite sure what u mean. Please discribe better.
da_silvy
Nov 11th, 2000, 11:00 PM
the innerhtml?
you can manipulate it through:
top.frames[1].location = "newlocation" etc...
twoshorts
Aug 22nd, 2001, 06:40 AM
I assume you are using VB
Dim Doc As HTMLDocument
Set Doc = WebBrowser1.Document.frames.Item(0)' or (1) or (2) etc
Debug.Print Doc.documentElement.innerHTML
sail3005
Aug 22nd, 2001, 05:48 PM
i am not sure if it is possible to get the innerhtml of a frame but i assume it would be something like this:
somevar = parent.framename.document.innerHtml;
scoutt
Aug 22nd, 2001, 06:08 PM
innerhtml.frames[1].location =
something like that, and no he isn't using VB.
Psyrus
Aug 24th, 2001, 01:10 PM
I think it might be:
strHTML = parent.framesName.document.body.innerHtml;
sail3005
Aug 24th, 2001, 04:07 PM
lol...so it is one of these:
strHTML = parent.framesName.document.body.innerHtml;
somevar = parent.framename.document.innerHtml;
innerhtml.frames[1].location =
scoutt
Aug 24th, 2001, 04:15 PM
:D
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.