2

Is there any way to show a particular page of PDF file using C# / JQuery ?

joHn
  • 43
  • 1
  • 1
  • 6

2 Answers2

5

Adobe defines parameters that allow you to open a PDF document with a command or URL that specifies exactly what to display (a named destination or specific page), and how to display it (with a specific view, scrollbars, bookmarks, or highlighting, for example).

http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParams.pdf

David Brabant
  • 39,073
  • 16
  • 82
  • 103
  • Thanks for the responses. I don't want to open a file using Reader. I just want to show a particular page from PDF file on my webpage using c# / jQuery – joHn Jan 30 '12 at 06:52
  • Updated link: https://www.adobe.com/content/dam/acom/en/devnet/acrobat/pdfs/pdf_open_parameters.pdf – Jim Simson Apr 28 '19 at 21:24
0

You could try rendering the page of your PDF file as an image on your server, store it in a temporary file and show the image in the browser using JQuery or any other approach of your choice.

yms
  • 10,228
  • 3
  • 39
  • 67