Hi All,
I wrote a jsp that enables me to convert a resultset into an Excel file on clicking a button. It is coming good in my intranet using LAN. But the same thing when accessed through internet, it is showing me that the page cannot be displayed error page. The lines used are as follows:
response.setContentType("application/vnd.ms-excels; charset=us-ascii");
response.setHeader("Content-Transfer-Encoding", "7bit");
response.setHeader("Content-Disposition","attachment;filename=delivered.xls");
PrintWriter out1 = new PrintWriter(response.getOutputStream());
followed by the code to fetch the results and then followed by
out1.flush();
Kindly help me out with this problem.
It is working perfecly when used with in the intranet site.