I am trying to download pdf files from the server, but Browser.LoadURL
opens the pdf file in BrowserView. I have assigned DownloadHandler
to the Browser
but it does not fire.
How to download a pdf file instead of opening in the browserview using dotnetbrowser
335 Views Asked by SR_P At
1
The PDF files are not downloaded because they are opened by a built-in PDF viewer plugin instead.
To download these files, you need to disable the PDF plugin first.
To enable/disable a specific plugin you should create your own PluginFilter implementation:
This filter is then registered as shown below:
The
IsPluginAllowed()
method is invoked during loading a web page when this web page checks whether a specific plugin is allowed or not.After the PDF plugin is disabled, DotNetBrowser will download PDF instead of displaying it.
The article that describes how to disable the plugin can be found by the following link:
http://dotnetbrowser-support.teamdev.com/documentation/plugins-manager