How to export a html table to excel with customized header and footer
843840Aug 21 2008 — edited Aug 21 2008I am able to export data to excel using
<%
response.setContentType("application/vnd.ms-excel");
response.setHeader("Content-Disposition","attachment;filename=\"" +"Report.xls");
%>
but i need a customised header and footer (on each page ) in the excel how do i achieve this