主頁 > 知識(shí)庫(kù) > asp將table生成excel文件(xls)

asp將table生成excel文件(xls)

熱門標(biāo)簽:騰訊地圖標(biāo)注商戶關(guān)閉 西寧公司外呼系統(tǒng)平臺(tái) 地圖標(biāo)注服務(wù)哪家好 智能電銷機(jī)器人適用于哪些行業(yè) 徐州人工智能電銷機(jī)器人好用嗎 外呼系統(tǒng)還用卡么 長(zhǎng)沙防封電銷卡品牌 地圖標(biāo)注宅基地 武漢營(yíng)銷電話機(jī)器人軟件
復(fù)制代碼 代碼如下:

%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
%
if request("action")=1 then
Response.ContentType="application/ms-excel"
Response.AddHeader "content-disposition","attachment;filename=www.xls"
end if
%>
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
html xmlns="http://www.w3.org/1999/xhtml">
head>
meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
title>無標(biāo)題文檔/title>
style type="text/css">
table {
border-top:1px solid #003399;
border-left:1px solid #003399;
}
td {
border-right:1px solid #003399;
border-bottom:1px solid #003399;
}
thead {
background-color:#000066;
font-weight:bold;
padding:5px;
color:#FFFFFF;
}
/style>
script language="javascript">
function tableToExcel(){
location.href='?action=1';
}
/script>
/head>

body>
input type="button" value="導(dǎo)出數(shù)據(jù)" onclick="tableToExcel()" />
%
ConnStr="..."
Set conn = Server.CreateObject("ADODB.Connection")
conn.Open connstr

set rs = server.CreateObject("adodb.recordset")
rs.open "select top 10 * from [你的表名]",conn,1,1
if not (rs.eof and rs.bof) then
column = rs.fields.count
response.Write("table cellpadding='0' cellspacing='0'>")
response.Write("thead>td>序號(hào)/td>")
for each f in rs.fields
response.Write("td>" f.name "/td>")
next
response.Write("/thead>")
for j = 1 to rs.recordcount
if j > 5 then '在第五條的時(shí)候隱藏?cái)?shù)據(jù),經(jīng)過測(cè)試如果是display為none的數(shù)據(jù)是不會(huì)導(dǎo)出來的
response.Write("tr style='display:none'>")
else
response.Write("tr>")
end if
response.Write("td>" j "/td>")
for i = 0 to column - 1
response.Write("td>" rs(i) "/td>")
next
response.Write("/tr>")
rs.movenext
next
response.Write("/table>")
end if
rs.close
set rs = nothing
conn.close
set conn = nothing
%>
/body>
/html>
您可能感興趣的文章:
  • Asp.net生成Excel文件并下載(更新:解決使用迅雷下載頁面而不是文件的問題)
  • ASP.NET中生成Excel遇到的問題及改進(jìn)方法
  • PHP生成excel時(shí)單元格內(nèi)換行問題的解決方法
  • php生成EXCEL的東東
  • php,不用COM,生成excel文件
  • asp.net生成Excel并導(dǎo)出下載五種實(shí)現(xiàn)方法

標(biāo)簽:通化 通遼 巴彥淖爾 鷹潭 運(yùn)城 雅安 荊門 普洱

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《asp將table生成excel文件(xls)》,本文關(guān)鍵詞  asp,將,table,生成,excel,文件,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《asp將table生成excel文件(xls)》相關(guān)的同類信息!
  • 本頁收集關(guān)于asp將table生成excel文件(xls)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章