关于ASP调用EXCEL的问题
在一个ASP页面录入数据,比如录入“商品名称”,“商品价格”,“商品进价”等信息,用EXCEL做一个商品信息卡的模板,要求点击“打印”按钮时,能把上面那几项写入到该EXC...
在一个ASP页面录入数据,比如录入“商品名称”,“商品价格”,“商品进价”等信息,用EXCEL做一个商品信息卡的模板,要求点击“打印”按钮时,能把上面那几项写入到该EXCEL表格的相应单元格,比如B2,B3等,然后再调用EXCEL打印出来,请问要怎么写代码?
手头上仅有的财富不多,能解决者全部奉上,谢谢! 展开
手头上仅有的财富不多,能解决者全部奉上,谢谢! 展开
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 name="data" id="data" width="100%" height="25%" border="0" cellpadding="1" cellspacing="1">
<tr>
<td width="50%" align="center" bgcolor="#FFFFCC"> <strong>职务 </strong> </td>
<td width="50%" align="center" bgcolor="#FFFFCC"> <strong>职级 </strong> </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 name="data" id="data" width="100%" height="25%" border="0" cellpadding="1" cellspacing="1">
<tr>
<td width="50%" align="center" bgcolor="#FFFFCC"> <strong>职务 </strong> </td>
<td width="50%" align="center" bgcolor="#FFFFCC"> <strong>职级 </strong> </td>
</tr>
</table>
<input type="button" name="out_excel" onClick="location.href='?action=toExcel'" value="导出到excel">
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询