Opening pdf to correct page

0
i have to open a PDF and to a specific page which is coming from DocAi response and im using this code $Reference/URL + '#page=' + toString($Reference/PageNumber) and my pdf is not getting opened and throughing file not found error how to achieve this
asked
1 answers
0

Hi Nithya,



open a PDF to a specific page by appending #page= to a direct download URL, for example:


YOUR_PDF_URL#page=5

Notes:

  • Works only if the browser/PDF viewer supports #page=
  • Page number is 1‑based
  • If you get file not found, the base URL is wrong, not the #page= part


answered