Thursday, June 30, 2005

How to force browsers to pop open a file save dialog?

Use the code below to force browsers to pop open a file save dialog when they access your page.

In JSP/Servlet

response.setHeader("Content-Disposition", "attachment;filename=myfile.txt");
response.setContentType("application/download");

3 comments:

ii said...

good one ... thanx

Unknown said...

This is NOT correct. You must use application/octet-stream for unspecified binary data. Some browsers may try to display your data as text if you use application/download

Anonymous said...

IN PHP

header("Content-Disposition: attachment; filename=myfile.txt");
header("Content-Type: application/download");

Total Pageviews

Reading List - 05-Mar-23

Talking to #AI may be the most important job skill of this century ( JohnGoodPasture ) Role of account management over the years. It’s a ro...