2012-10-01 6 views
0

와 인터넷 익스플로러 스트림을 취득 :나는 웹 사이트를 열려면이 코드를 사용 SHDOCVW DLL

private void OpenBrowser(string url) 
{ 
    object sender; 
    WebBrowserDocumentCompletedEventArgs e; 
    ie.DocumentComplete += (DWebBrowserEvents2_DocumentCompleteEventHandler) 
     new DWebBrowserEvents2_DocumentCompleteEventHandler(webBrowser1_DocumentCompleted); 
     wb = (IWebBrowserApp) ie; 
     wb.Visible = true; 
     object o = null; 
     wb.Navigate(url, ref o, ref o, ref o, ref o); 

} 

private void webBrowser1_DocumentCompleted(object sender, ref object e) 
{ 

} 

웹 사이트가 열렸다하지만 액세스 페이지의 내용에 대해 해당 웹 페이지의 흐름을 문서화하는 액세스하려는. 이것을 할 수 있습니까?

답변