ASP+Excel
能不能写个程序,把ASP显示出来的内容,保存到Excel表格里,要保持ASP内容的格式不变(单元格的大小不变)。...
能不能写个程序,把ASP显示出来的内容,保存到Excel表格里,要保持ASP内容的格式不变(单元格的大小不变)。
展开
1个回答
展开全部
<%
if request.querystring("action")="toExcel" then
Response.ContentType="application/vnd.ms-excel"
Response.AddHeader "content-disposition","attachment;filename=aaa.xls"
end if
%>
<html>
<body>
<table width="100%" border="0" cellpadding="1" cellspacing="1">
<tr>
<td width="50%" > 职务 </td>
<td width="50%" >职级 </td>
</tr>
</table>
<input type="button" name="out_excel" onClick="location.href='?action=toExcel'" value="导出到excel">
</body>
</html>
if request.querystring("action")="toExcel" then
Response.ContentType="application/vnd.ms-excel"
Response.AddHeader "content-disposition","attachment;filename=aaa.xls"
end if
%>
<html>
<body>
<table width="100%" border="0" cellpadding="1" cellspacing="1">
<tr>
<td width="50%" > 职务 </td>
<td width="50%" >职级 </td>
</tr>
</table>
<input type="button" name="out_excel" onClick="location.href='?action=toExcel'" value="导出到excel">
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询