Re: Jsp out to Persist

2007-05-01 Thread Lance
sday, May 01, 2007 4:52 PM To: Struts Users Mailing List Subject: Re: Jsp out to Persist Are you saving the file to the client or to the server? If you want the client to save the file, you can set the content disposition header... this will cause a file download dialog to appear response.setHe

RE: Jsp out to Persist

2007-05-01 Thread nagesh.kumar
MAIL PROTECTED] Sent: Tuesday, May 01, 2007 4:52 PM To: Struts Users Mailing List Subject: Re: Jsp out to Persist Are you saving the file to the client or to the server? If you want the client to save the file, you can set the content disposition header... this will cause a file download dialog to ap

Re: Jsp out to Persist

2007-05-01 Thread Lance
Are you saving the file to the client or to the server? If you want the client to save the file, you can set the content disposition header... this will cause a file download dialog to appear response.setHeader("content-disposition", "attachment; filename=someFileName.html"); If you want t