Reputation: 43
Is there any way to show a particular page of PDF file using C# / JQuery ?
Upvotes: 2
Views: 1211
Reputation: 10418
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.
Upvotes: 0
Reputation: 43499
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
Upvotes: 5