I am using the following code to generate a PDF document from a JSP, but it generates an Excel sheet.
<%@ page buffer="7024kb" %>
<%@ page contentType="application/pdf"%>
<%
String reportType=request.getParameter("reportType");
String fileName=reportType;
response.addHeader("Content-disposition", "attachment; filename="+fileName);
%>
<%= request.getParameter("file") %>
Can you tell me why this is happening? How can I rectify this?