in my application I use a WebBrowser-Control. In this I load a uri. When I show the code of this uri in internet explorer ist shows the following:

<div id="subProgramsContainer">
     <h2>
        <span id="ctl00_ctl00_ContentMain_ContentMain_additionalProgramsLabel">Weitere Programme</span>
     </h2>    
     <div id="subPrograms">     
        <table>
            <tbody>
                <tr>
                    <td class="c1">CAP</td>
                    <td class="c2"><a href="r.lnk?id=10" target="_blank">Beitreten</a></td>
                </tr>
                <tr>
                    <td class="c1">MCP</td>
                    <td class="c2"><a href="r.lnk?id=12" target="_blank">Beitreten</a></td>
                </tr>
                <tr>
                    <td class="c1">MPOS</td>
                    <td class="c2"><a href="r.lnk?id=11" target="_blank">Beitreten</a></td>
                </tr>
            </tbody>
        </table>
    </div>
</div>

When I get it about my WebBrowser-Control I get following code:

<DIV id=subProgramsContainer>
<H2><SPAN id=ctl00_ctl00_ContentMain_ContentMain_additionalProgramsLabel>Weitere Programme</SPAN> </H2>
<DIV id=subPrograms></DIV></DIV></DIV>

Where is the element? It is possible to get this element via mshtml? I parse the Document from my WebBrowser-Controal vial mshtml:

mshtml.IHTMLDocument3 doc = (mshtml.IHTMLDocument3)browser.Document;
link|improve this question

67% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.