Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

do create a file download by jsp need create a popup?

Status
Not open for further replies.

prosper

Programmer
Sep 4, 2001
631
HK
I need to create download function by jsp and use response.setContentType("application/vnd.ms-excel"), so i need a popup first so that i can call the jsp for response.setContentType("application/vnd.ms-excel") and create download

User will see a popup up and then a save as...
 
Hi,

Use html target="_blank" it will open a new window and in the new window open the jsp with ms-excel page. If not on click of a button or link use window.open(url,'',''); the url will be the excel page. Or if you set the response.setHeader("Content-disposition","attachment;filename=test.xls");
will open the excel in ms-excel no in the browser windiw.

Cheers
Venu
 
i find the solution, i can use the iframe and use javascript and JSP to create download without using a popup
downloadframe.location=...
downloadframe is iframe
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top