Hi Friends,
I'm using the WebBrowser control inside a Windows Form to display a PDF.
Whenever the PDF is regenerated, however, the WebBrowser control only displays its local cached version and not the updated version from the server.
I'm using the Refresh() method shown below to try and force the control to reload the PDF, but it doesn't work:
_webBrowser.Navigate(pdfUrl);
_webBrowser.Refresh(WebBrowserRefreshOption.Completely)
Do I have to do anything else to force the refresh to reload the PDF from the server?