How can I get a frame's content with mshtml? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T01:02:15Z http://stackoverflow.com/feeds/question/324231 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/324231/how-can-i-get-a-frames-content-with-mshtml 1 How can I get a frame's content with mshtml? Antoine 2008-11-27T16:54:36Z 2008-12-04T17:55:43Z <p>Here's the issue:</p> <p>I have a hook in IE that reacts on <code>WebBrowser.OnNavigateComplete2</code> event to parse the content of the document for some precise info.</p> <p>That document contains frames, so I look into the <code>HTMLDocument.frames</code>. For each one, I look into the document.body.outerHTML property to check for the content. </p> <p>Problem is, the string I'm looking for never shows there, whereas it is displayed in the finale page. So, am I looking in the wrong place? If it is displayed when the page is fully loaded, then it's downloaded at some point, right? But in which object should I look ?</p> <p>BTW, I Don't know if that is of any importance, but the page I'm searching into comes from a ASP.NET application.</p> <pre><code>public void OnNavigateComplete2(object pDisp, ref object url) { document = (HTMLDocument)webBrowser.Document; mshtml.FramesCollection frames = document.frames; for (int i = 0; i &lt; frames.length; i++) { object refIdx = i; IHTMLWindow2 frame = (IHTMLWindow2)frames.item(ref refIdx); string frameContent = frame.document.body.outerHTML; } } </code></pre> <p>Thank your for your help.</p> <p><hr /></p> <p>@rams This event is launched many times for each page, so I figured it was each time a framed is loaded, even if i don't get to catch the one I'm looking for. If not, what would be the event to catch the frames content?</p> <p>What I want to do is detect some precise info on a precise frame, then save it. later, a web page is loaded triggered by some user action, where I need the info I got from parsing the frame.</p> http://stackoverflow.com/questions/324231/how-can-i-get-a-frames-content-with-mshtml/324297#324297 0 Answer by Gonzalo Quero for How can I get a frame's content with mshtml? Gonzalo Quero 2008-11-27T17:23:08Z 2008-11-27T17:23:08Z <p>Are you using some kind of threading? Running the browser in a separate thread really messes up things. Try to execute it in an STAThread and check if you get the correct result.</p> http://stackoverflow.com/questions/324231/how-can-i-get-a-frames-content-with-mshtml/332008#332008 0 Answer by rams for How can I get a frame's content with mshtml? rams 2008-12-01T19:59:29Z 2008-12-01T19:59:29Z <p>The reason your string does not show is because of the frame. The web browser control fires the document navigate complete event after it has loaded the main document. At this point, the frames haven't yet requested their sources. After the document is parsed by the web browser control, requests for the frame sources are issues and downloaded. </p> <p>Can you please describe what you are trying to accomplish?</p> http://stackoverflow.com/questions/324231/how-can-i-get-a-frames-content-with-mshtml/341537#341537 0 Answer by rams for How can I get a frame's content with mshtml? rams 2008-12-04T17:55:43Z 2008-12-04T17:55:43Z <p>Do you know the name/id of the frame you are looking for content? If so, in your navigateComplete2 event, can you get a reference to the frame like </p> <pre><code>iFrame frm = document.frames(&lt;your frame id&gt;); int readyState=0; while(frm.readystate !=4){ // do nothing. be careful to not create an endless loop } if(frm.readyState==4){ // get your content now } </code></pre> <p>HTH</p>