RE: How to make the file to download when clicking on a link --use DownloadAction in struts 1.2.8

2007-02-27 Thread Raghu
ing List Subject: Re: How to make the file to download when clicking on a link follow the below steps For HttpServletResponse set the response.setContentType(".") ; response.setHeader("Content-Disposition","attachment;filename=\"" + s2 + "\&q

Re: How to make the file to download when clicking on a link

2007-02-27 Thread Prithivirajan Dhamodharan
header. name response.setContentLength() //file length; Get the output stream of HttpServleResponse , bufferedoutputstream = new BufferedOutputStream(httpservletresponse .getOutputStream()); Write the content and close the stream. On 2/27/07, Satheesh <[EMAIL P

How to make the file to download when clicking on a link

2007-02-27 Thread Satheesh
How to make the file to download when clicking on a link using JSP... Please send me the code...