Ross
Ross

Reputation:

Disable flash or other plugins in .NET WebBrowser control

Is it possible to disable Flash Player or any other plugins from being used by the .NET WebBrowser control?

Upvotes: 2

Views: 2956

Answers (1)

Janie
Janie

Reputation: 1933

You could access the WebBrowser.Document.HtmlDocument property of the the control to get managed access to the DOM. From there you can pull out any object tags responsible for loading plugin content...

Upvotes: 1

Related Questions