Posted by yihucd on 12/21/82 11:39
Thank you all so much. I put following code in my JSP code.
But the thing is that, when I load this page, I only see the pop up
window without first seeing the acutal page.
What I want is a page showing the following sentence
" Click file"
When the user click on the word file, then a window pop up. How to do
this?
<%
response.setContentType("application/vnd.ms-excel");
response.setHeader("Content-Disposition","attachment; filename=" +
"xls_to_del.xls" );
%>
<html>
<head>
<title>click file</title>
</head>
<body>
<p>click <a href="xls_to_del.xls">file</a></p>
</body>
</html>
[Back to original message]
|