How can I extract the response info returned when an instance of IE opens a specific URL?

This opens a page, but is there anyway to extract the header info?


Private Sub OpenBrowser(ByVal url As String)
Dim ie As New SHDocVw.InternetExplorerClass()
Dim wb As IWebBrowserApp = CType(ie, IWebBrowserApp)
wb.Visible = True
Dim o As Object = Nothing
wb.Navigate(url, o, o, o, o)

End Sub 'OpenBrowser

Thanks - hopefully there is a way to do this