On clcking a link, i want to open a csv file in an Excel. As of now, it opens for me in the browser itself and there is no way to go back. I would like to open it in a popup using Excel.
<a href="${pageContext.request.contextPath}/templates/CSV_Template.csv">
Click here for csv template
How to achieve this? Can this be done in JSP only using javascript?
I have added target=”_blank” in href. But no luck. It is still opening in the browser. I mean it does open in a new tab. But i donot want that. I would like to open it in the excel popup.
Please provide your suggestions on this. I have a business requirement to acheive this functionality.
If you’re using
<a href="...>then add the propertytarget="_blank"and it will download on a separate window.For example:
Update:
Since you said you tried
_blankand had issues, you can redirect to another JSP which will have the following lines in the beginning (before you output the CSV content):