C# load file in server

  • 355 Views
  • Last Post 11 March 2019
Achref Bouafif posted this 11 March 2019

Hello, can you help me I want to access and read pdf file that are on server from my windows form

java2s posted this 11 March 2019

You can add a WebBrowser control to your windows forms application.

To read a pdf file from web server, you should get url of pdf file, then set

WebBrowser1.Url = "Your url pdf file"

I hope you can solve the problem.

Close