How do I open a PDF document from JSP? I have many links to PDF files. In Eclipse, when I click on the link, the PDF opens in PDF reader. But in a webbrowser like Firefox and Chrome, nothing happens.
I am generating the links to PDF files as F:\....\...pdf
the following way:
<%
while (iter.hasNext()) {
element = iter.next();
bookName = getBookName(element);
%>
<ul>
<li><a href="<%=element %>"><%=bookName %></a>
</ul>
<%
}
%>
How is this problem caused and how can I solve it?