Errors in Excel Save method:0

Hi Chris,

Please use "application/vnd.ms-excel" or "application/vnd.ms-workbook" mime type instead of "application/download".

See following codes (which are used to set response header in the demos):

private void setResponseHeader(HttpServletResponse response, String resultXLS)
{
response.setContentType("application/vnd.ms-excel");
response.addHeader("content-disposition", "inline; filename=" + resultXLS);
}

Warren,
I know that we tested with one of those options but don't recall if we tested both. I'm going to be out of the office until next week and will try to test with those content types by the end of next week.

Thanks!

Chris