发新话题
打印

如何把asp页面中的表格数据倒入 exel 中?

如何把asp页面中的表格数据倒入 exel 中?

如何自动把asp页面中的表格里的数据倒入  exel  表中?

TOP

<%@  Language=VBScript  %>  
<%  
Response.Buffer  =  True  
Response.ContentType  =  "application/vnd.ms-excel"  
%>  
<table  border="1">  
     <tr>  
           <th>项目  A</th>  
           <th>项目  B</th>  
           <th>合计</th>  
           <th>项目  C</th>  
           <th>项目  D</th>  
           <th>合计</th>  
     </tr>  
     <tr>  
           <td  height="30"><%=Request.form("aa")%></td>  
           <td>3</td>  
           <td>5</td>  
           <td>6</td>  
           <td>7</td>  
           <td><font  color="red">=sum(a2:e2)*100</font></td>  
     </tr>  
     <tr>  
           <td>2</td>  
           <td>1</td>  
           <td  colspan="4"><font  color="red">=sum(a3:b3)+f2</font></td>  
     </tr>  
</table>

TOP

发新话题