Web Browser Component and Proxy

BrianHansen

Newcomer
Joined
Aug 4, 2003
Messages
9
I've used the active x control (webbrowser), but I'm having troubles to find a way to tell it to use a specific proxy.

Navigation is simple enough, so I don't need help with that. Only the proxy part. Thanks in advance.

I prefer examples in c#, but vb.net is ok ;)

Last but not least, is there another component like the webbrowser, that I should know of?
 
The WebBrowser ActiveX control should use whatever proxy IE is configured to use - I doubt you'll be able to make it use an arbitrary one of your choice.

The next version of the framework has a managed WebBrowser wrapper complete with DOM, that will be a great deal better than using the old ActiveX control.
 
Thanks for the info, I'm looking forward for that.

But still, when I've set a proxy in my "real" IE, it still uses my real ip. If it didn't I wouldn't have that many problems.

But I'll have a look at it, only to prove myself wrong (Which I guess I'm).

Btw: Do you know of the up coming release date for the next framework?

[EDIT]:You are absolutely correct.the Webbrowser component does indeed use the current proxy settings.

You have saved my day.

Even though that this isn't the best solution, it is much better than not to be able to do it. Thanks again.
 
Last edited:
Back
Top