HELP: how to Open a PDF's specific Page from ASP.NET application

tajmohammad

Newcomer
Joined
Jun 1, 2006
Messages
1
Hi, I have created a link in my asp/asp.net web page which open a PDF file in another window.

I want that a PDF file should be opened and scroll to some specified page number.

like suppose i want to open page no 10 then it should open the PDF in new window and goto page number 10


Please help me finding this solution
 
That works

From what I saw you just have to add "#page=4" after the url to go to page 4

Exemple:
Code:
http://localhost/myPdf.pdf#page=4
 
Back
Top