Cannot able to display images in converted HTML to Excel file
Hello All,
I have used following code to convert html data to Excel file.
But my problem is, this code connot converting images in the HTML files to excel sheet.
Please help me in this topic
<%
String mimeType = "application/vnd.ms-excel";
response.setContentType(mimeType);
response.setHeader("content-disposition","attachment; filename=filename.xls");
%>
Thanks in advance
Gopi
|