阿木申 申楠

热衷编程技术 | 申楠 : qq:38371354 | msn:amushen2005@hotmail.com
posts - 44, comments - 51, trackbacks - 0, articles - 0

导出到excel

Posted on 2006-03-20 09:19 阿木申 阅读(76) 评论(0) 编辑 收藏

<%@page contentType="application/vnd.ms-excel; charset=GBK"%>
<%
response.setHeader("Content-disposition","attachment; filename=inquire.xls");
%>
<html>
<body>
<table>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
</tr>
</table>
</body>
</html>