Click here to Skip to main content
6,632,966 members and growing! (20,062 online)
Email Password   helpLost your password?
General Programming » Bugs & Workarounds » .NET issues     Intermediate

.NET MSIE OnBeforeNavigate2 fix

By Stephane Rodriguez.

Provides a fix to catch otherwise hidden events of MS Internet Explorer
C#.NET 1.0, Win2K, WinXP, Dev
Posted:27 Oct 2002
Updated:29 Oct 2002
Views:136,980
Bookmarked:52 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
31 votes for this article.
Popularity: 6.34 Rating: 4.25 out of 5
2 votes, 13.3%
1

2

3

4
13 votes, 86.7%
5

The remainder of this article provides a fix to receive otherwise hidden events such as the famous OnBeforeNavigate2 from MS Internet Explorer.

Reusing the code

Namely, if you wish to use the Internet Explorer control in a .NET app, what you usually do is go in the Toolbox Window, Customize, search for the Microsoft Web Browser Control (shdocvw.dll), drop it on a form, and start exploring the object model.

That is simple, but does not work as expected. You never get notified of several events.

If you are not interesting in the programming details, just reuse the source code. Don't be afraid of the size (54kb), it is somewhat big because there are two interop assemblies, but the real addition is just 10 lines of code. The project was obtained by doing the following:

  • dropped the Web Browser control on a form named Form1
  • added the code snippet to fix the Web Browser control (see below)
  • added a text box to manage URL typing
  • added an event handler on the TextBox to catch keyboard returns and ask IE to do a simple Navigate(url) on it.

Explanations

There is a problem when you IE in a .NET environment. Due to a .NET 1.0 limitation, marshaling cannot handle complex variant types, which are at the core of most events triggered by the DWebBrowserEvents2 dispatch interface.

Unfortunately, the OnBeforeNavigate2 event is triggered through this interface. This event is often used by programmers to be notified any time the user clicked on a link or submitted a form, providing them with very valuable information including URL, posted data, headers, and even the ability to cancel the navigation depending on the application logic.

Now we know that we can't use this event, as is.

But, by carefully watching the core Internet Explorer interfaces (by using OLEView on shdocvw.dll, or by looking at the redistributed IDL interface located in Platform SDK\Include\ExDisp.idl) we can see the DWebBrowserEvents interface (older but backward supported) provides events such as OnBeforeNavigate (note the missing 2).

Here is a extract of these interfaces in IDL:

[
  uuid(8856F961-340A-11D0-A96B-00C04FD705A2),
  helpstring("WebBrowser Control"),
  control
]
coclass WebBrowser 
{
    [default] interface IWebBrowser2;[strong] // default COM interface
    interface IWebBrowser;

    // default event source
    [default, source] dispinterface DWebBrowserEvents2;[strong] 
    [source] dispinterface DWebBrowserEvents;
};


[
  uuid(34A715A0-6587-11D0-924A-0020AFC7AC4D),
  helpstring("Web Browser Control events interface"),
  hidden
]
dispinterface DWebBrowserEvents2 
{
    properties:
    methods:

  // note the VARIANT* everywhere
  // (the VARIANT* is the heart of the issue we have)
  [id(0x000000fa)]
  void BeforeNavigate2(
                        [in] IDispatch* pDisp, 
                        [in] VARIANT* URL, 
                        [in] VARIANT* Flags, 
                        [in] VARIANT* TargetFrameName, 
                        [in] VARIANT* PostData, 
                        [in] VARIANT* Headers, 
                        [in, out] VARIANT_BOOL* Cancel);

   ...
}


[
  uuid(EAB22AC2-30C1-11CF-A7EB-0000C05BAE0B),
  helpstring("Web Browser Control Events (old)"),
  hidden
]
dispinterface DWebBrowserEvents {
    properties:
    methods:

  [id(0x00000064)]
  void BeforeNavigate(
                        [in] BSTR URL, 
                        long Flags, 
                        BSTR TargetFrameName, 
                        VARIANT* PostData, 
                        BSTR Headers, 
                        [in, out] VARIANT_BOOL* Cancel);
  ...
}

The important thing to note is that the IDL defines DWebBrowserEvents2 as the default event source, not DWebBrowserEvents. Because of that, the interop wrapper generator (tlbimp.exe) will provide us with marshaling code reflecting just that, namely AxInterop.SHDocVw.dll (ActiveX layer) and Interop.SHDocVw.dll (shdocvw.dll wrapper). As a result, if you type axWebBrowser1. (notice the dot), then intellisense will show you methods from this interface, not from DWebBrowserEvents. Casting is of no help here : the compiler would be ok, but it would fail at run-time. Looks like we are a bit stuck here.

To go on, we are actually going to ask the interop marshaler to produce at run-time a wrapper for the DWebBrowserEvents interface. Let's show some code now:

/// <summary>

/// Summary description for Form1.

/// </summary>

public class Form1 : System.Windows.Forms.Form
{
    private AxSHDocVw.AxWebBrowser axWebBrowser1;
    private SHDocVw.WebBrowserClass ie_events;
    private System.Windows.Forms.TextBox textBox1;

    public Form1()
    {
        //

        // Required for Windows Form Designer support

        //

        InitializeComponent();

        // -- begin code snippet --


        ie_events = (SHDocVw.WebBrowserClass) 
                    Marshal.CreateWrapperOfType(
                        axWebBrowser1.GetOcx(),
                        typeof(SHDocVw.WebBrowserClass)
                    );

        // -- end code snippet --


        ...
    }
}

The CreateWrapperOfType call performs the magic of creating an RCW (layer to execute COM interfaces and methods) for us. Instead of passing the SHDocVw.DWebBrowserEvents interface type we want, we pass the SHDocVw.WebBrowserClass instead. Why ? That's a trick again, the marshaler expects a coclass type to build the RCW, instead of a simple interface. WebBrowserClass is the .NET name of coclass WebBrowser declared in the IDL.

The resulting RCW is stored in a member of our Form. Now we have the right interface to play with. By virtue of the IDL COM declaration, if we use intellisense on ie_events, we are going to see both interface's methods and events. And there we have BeforeNavigate.

We are done, let's show how we use this event to get the actual notification. In .NET, we just create a delegate, and attach an event handler to it:

public Form1()
{
    //

    // Required for Windows Form Designer support

    //

    InitializeComponent();

    // -- begin code snippet --


    ie_events = (SHDocVw.WebBrowserClass) Marshal.CreateWrapperOfType(
        axWebBrowser1.GetOcx(),
        typeof(SHDocVw.WebBrowserClass)
    );

    SHDocVw.DWebBrowserEvents_BeforeNavigateEventHandler BeforeNavigateE = 
        new SHDocVw.DWebBrowserEvents_BeforeNavigateEventHandler( 
            OnBeforeNavigate 
        );

    ie_events.BeforeNavigate += BeforeNavigateE;

    // -- end code snippet --


    ...
}

public void OnBeforeNavigate(string url, 
                             int flags, 
                             string targetFrame, 
                             ref object postData, 
                             string headers, 
                             ref bool Cancel)
{
    int c = 0; // PUT A BREAKPOINT HERE

}

A demo app

Just to see something happen on screen, we immediately ask the web browser to show CodeProject (face of relief...):

textBox1.Text = "http://www.codeproject.com";
OnNewUrl(null,null);

// KeyUp handler (used to trap VK_RETURN from the text box)

private void OnNewUrl(object sender, KeyEventArgs e)
{
    object o = null;

    if (e==null || e.KeyCode==Keys.Enter)
        axWebBrowser1.Navigate(textBox1.Text, ref o, ref o, 
            ref o, ref o);
}

Eh voilà.

Stephane Rodriguez - Oct 28 2002.

History

  • October 28, 2002 - Initial Posting

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Stephane Rodriguez.


Member
Addicted to reverse engineering. At work, I am developing business intelligence software in a team of smart people (independent software vendor).

Need a fast Excel generation component? Try xlsgen.


Location: France France

Other popular Bugs & Workarounds articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 46 (Total in Forum: 46) (Refresh)FirstPrevNext
Generalusing DocumentComplete Pinmemberdakkeh3:36 20 Jan '08  
GeneralPerfect Pinmemberabensicsu11:30 26 Jan '06  
GeneralWindowSetLeft and dual monitors Pinmembergeblack6:08 8 Dec '04  
GeneralEvent handlers are lost when opening more than one form with a web browser in it. Pinmembersimonclark5:20 3 Aug '04  
GeneralRe: Event handlers are lost when opening more than one form with a web browser in it. PinsussAnonymous7:15 21 Nov '04  
GeneralHow to get rid of the Beep when pressing enter? Pinmemberhenchook6:19 14 Jul '04  
GeneralRe: How to get rid of the Beep when pressing enter? Pinmemberjbredeche13:53 14 Mar '06  
GeneralWindowSetLeft problem PinsussMichael Z...12:59 25 Jun '04  
GeneralRe: WindowSetLeft problem PinsussAnonymous13:52 10 Aug '04  
GeneralRe: WindowSetLeft problem Pinmembermikezat14:30 10 Aug '04  
GeneralNewWindow2 problem PinmemberMichael Cleary6:49 8 Jun '04  
GeneralRe: NewWindow2 problem PinmemberNetCoder200512:49 18 Apr '05  
GeneralRe: NewWindow2 problem PinmemberCarlos Eugênio X. Torres0:57 5 Sep '05  
GeneralRe: NewWindow2 problem Pinmembermvdeveloper10:19 20 Sep '07  
GeneralCustom HTTP headers Pinmembergerdavax1:37 7 May '04  
GeneralRe: Custom HTTP headers PinmemberStephane Rodriguez.10:40 7 May '04  
GeneralRe: Custom HTTP headers Pinmembergerdavax22:57 9 May '04  
GeneralRe: Custom HTTP headers PinmemberdarXstar0:43 12 May '04  
GeneralRe: Custom HTTP headers Pinmembergerdavax1:47 12 May '04  
GeneralRe: Custom HTTP headers PinmemberdarXstar6:45 14 May '04  
GeneralRe: Custom HTTP headers PinsussAnonymous3:56 13 Dec '04  
GeneralRe: Custom HTTP headers Pinmemberspecter7912:34 28 Sep '06  
GeneralCFileFind PinsussAlicya23:17 12 Feb '04  
GeneralRe: CFileFind PinmemberStephane Rodriguez.0:30 13 Feb '04  
GeneralWBC in MDI Pinmembersheeba Gandhi0:49 8 Nov '03  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 29 Oct 2002
Editor: James T. Johnson
Copyright 2002 by Stephane Rodriguez.
Everything else Copyright © CodeProject, 1999-2009
Web21 | Advertise on the Code Project