Content-Disposition inline/attachment
I am using Content-Disposition for excel file download as below:
I have searched the forum but not able to get the exact answer or solution. Please also guide me to some url if possible.
response.setContentType("application/vnd.ms-excel");
response.setHeader("Content-Disposition", "inline; filename=xyz.xls" );
If I am using inline attribute but I am not able to specify the filename as xyz.xls and by default fileName provided by browser is the request URL(action-mapping in case of struts).
But it works fine with attachment attribute and prompts for the exact file Name and works fine.
I want to know how to specify the desired fileName with inline Attribute ? I am using the struts based request for Excel file generation.
Best Regards,
Amber Gupta