InterviewSolution
Saved Bookmarks
| 1. |
Which page directive should be used in JSP to generate a PDF page?(a) contentType(b) generatePdf(c) typePDF(d) contentPDF |
|
Answer» Right choice is (a) contentType The best I can explain: <%page contentType=”application/pdf”> tag is used in JSP to generate PDF. |
|