
c# WebBrowser Control BeforeNavigate2 Headers
John,
You probably are not going to find one. You can add a reference in your
C# project to the web browser control and you should be able to use it
normally. Once you have added it, you will want to add a delegate for the
BeforeNavigate2 event. The Headers parameter will be a string that you
should be able to change as you wish.
Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
Quote:
> How do I modify the Headers for each request that the WebBrowser
> control makes?
> I need c# examples.
> I found some documentation that suggests that I need to use the
> BeforeNavigate2 event, but no example code for c#.