Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to make files download instead of opening in browser?
    primarykey
    data
    text
    <p>I am a new bie, i want files to get downloaded when user clicks on download option its opening in the browser instead of download option like save as/open.Here i referred for the same and every where they have suggested to use </p> <pre><code>Response.AddHeader("Content-disposition", "attachment; filename=" + Name); </code></pre> <p>But i don't know where and how to use. Actually i'm getting the url value from query written which return url as one of the object of bean stored in arraylist(This list is having other values also with url ). I am having the url values inside the arraylist as bean as like</p> <pre><code>type=.pdf release date=12/3/08 name=hai.pdf url=/files/en/soft/doc/docs/hai.pdf </code></pre> <p>I am getting this array list in my controller like this</p> <pre><code>ArrayList details = dao.getdetails(Bean.getNumber()); </code></pre> <p>and pass this into view like this</p> <pre><code>Map.put("details", details); modelView.setViewName("details_list"); modelView.addAllObjects(Map); return modelView; </code></pre> <p>in jsp i have iterated this array list and diplays the content like this</p> <pre><code>Type name Release Date .txt hai.pdf May 21st 2012 Download .txt hello.txt May 21st 2012 Download </code></pre> <p>For download i have used like this in jsp</p> <pre><code>&lt;td colspan="2" valign="top"&gt; &lt;a href="${details.Url}"/&gt; &lt;img src="/images/download.gif" alt="Download" border="0" align="right"&gt;&lt;/a&gt; &lt;/td&gt; </code></pre> <p>here on click of download its opening in browser.I need this to be downloaded instead. Please help me in how to use or handle</p> <pre><code>response.setHeader("Content-Disposition", "attachment;"); </code></pre> <p>where to add the above for my requirement or if i can do with any java script also.Please help me in solving the above.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload