.NET 2.0 WebBrowser control - Security settings..

  • Thread starter Thread starter JM
  • Start date Start date
J

JM

I am using the WebBrowser control in .NET 2.0 Windows based
application. I want to use the default IE security settings, privacy
settings etc.

Is there a way by which I can achieve this ?

Thanks in advance
JM
 
WebBrowser component provides no way of setting these.

The Browser control that you put on your Form is just a kid of the IE
installed on you system. It is just a WINDOW not the IE itself so you can
only manipulate the Window related properties.

For the settings and all it would inherit it from the IE. Whatever current
setting of IE it will use that setting .

So all you need is set the properties in IE and Browser Control will pick it
up.

For different things you may have to change any different places
e.g. for security
you can see the following link
http://groups.google.com.pk/group/m...ogrammatically+&rnum=1&hl=en#3e68cfd386ba4e16
 
Back
Top