通用asp读取csv文件全部行和列显示为表格

11 篇文章 0 订阅
<html>
<head>
<title>asp read csv</title>
<style>
caption{padding:5px;margin:8px auto;margin-left:18px;}
table{border-top:2px solid #0180CF; margin:0 auto;font-size:12px;width:99%;}
table td{min-width:66px;border-bottom:1px solid #a2c6d3;padding:5px 0px;word-wrap:break-word;word-break:break-all;}
table tr:nth-child(even){background: #FCFCFC;}
</style>
</head>
<body>
<%

Set Conn = Server.Createobject("ADODB.Connection")
Conn.Open "Driver={Microsoft Text Driver (*.txt; *.csv)};" & _
"Dbq=" & Server.MapPath("/csv/") & ";Extensions=asc,csv,tab,txt;Persist Security Info=False"

strSQL = "SELECT * FROM test.csv"
Set objRec = Conn.Execute(strSQL)
%>
<table cellspacing='0'>
<%
If Not objRec.EOF Then
objRec.MoveFirst
lies = objRec.fields.count
 response.write "<tr class='tt'>"&vbcrlf
 for i = 0 to lies - 1
 lieti = objRec.fields.item(i).name 'objRec.Fields(0).name
 response.write "<td><nobr>" & lieti & "</nobr></td>"&vbcrlf
 next
 response.write "</tr>"&vbcrlf
While Not objRec.EOF
 response.write "<tr>"&vbcrlf
 for i = 0 to lies - 1
 lieti = objRec.fields.item(i).value 'objRec.Fields(0).Value
 response.write "<td>" & lieti & "</td>"&vbcrlf
 next
 response.write "</tr>"&vbcrlf
objRec.MoveNext
Wend
End IF
%>
<%
objRec.Close()
Conn.Close()
Set objRec = Nothing
Set Conn = Nothing
%>
</table>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

YUJIANYUE

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值