exporting to excel sheets
I Have a jsp page where I am printing the details of my customer.
I have used tables to print the customer details.
Then to export those contents to an excel file i have used the code which i got from forum.java.sun..
response.setContentType("application/vnd.ms-excel");
response.setHeader("contentDisposition",attachment;filename="report,.xls");
i have used a menu in my page..
when using this code i do get that save as dialouge box but the excel file contains the contents of the menu which i have included in this page.
plz help me ...solve this.....Thanks in advance

