asp讀取excel表格第x行第y列值

來源:互聯網
上載者:User
本文介紹asp如何讀取excel表格裡的資料,excel2007支援sql查詢的方式讀取資料,excel可以當作是個資料庫,

下面的代碼經過本人測試可用,供大家參考。

代碼如下:

<%'讀取x行y列set Conn=Server.CreateObject("ADODB.Connection")set rs=Server.CreateObject("ADODB.Recordset")strConn="Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+Server.MapPath("1.xls")+";Extended Properties='Excel 8.0;HDR=no;IMEX=1'"Conn.Open strConnfunction getxy(table,x,y)sql="SELECT * FROM ["&table&"$]"rs.Open sql,Conn,1,1if not rs.eof then rs.move x-1 getxy=rs(y-1)elsegetxy=""end ifrs.CloseConn.Closeset rs = Nothingset Conn = Nothingend functionresponse.write getxy("民政婚姻登記",3,4)%>

本人由topic.alibabacloud.com提供,我是topic.alibabacloud.com作者“Ty80”。

文章地址:http://www.php.cn/csharp-article-377119.html

學編程就來topic.alibabacloud.com www.php.cn

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.