user1740864
user1740864

Reputation: 21

how to give print option to pdf file after generating in servlet

I have pdf file in my application. I need to display the pdf in browser. and also need to give print option to that page for printing how is it possible in servlet.i am generating pdf but how to give the print option to that generated pdf

Upvotes: 2

Views: 500

Answers (1)

Parth Soni
Parth Soni

Reputation: 11648

I think javascript should help You.

Use window.print()

Reference: http://www.w3schools.com/jsref/met_win_print.asp

Upvotes: 1

Related Questions