이 글에서는 ASP가 Excel 테이블에서 데이터를 읽는 방법을 소개합니다. Excel 2007은 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 strConn function getxy(table,x,y) sql="SELECT * FROM ["&table&"$]" rs.Open sql,Conn,1,1 if not rs.eof then rs.move x-1 getxy=rs(y-1) else getxy="" end if rs.Close Conn.Close set rs = Nothing set Conn = Nothing end function response.write getxy("民政婚姻登记",3,4) %>
저는 PHP 중국어 웹사이트 "Ty80"의 저자입니다.
기사 주소: http://www.php.cn/csharp-article-377119.html
프로그래밍을 배우려면 PHP 중국어 웹사이트 www.php.cn
위 내용은 ASP는 Excel 테이블의 x행과 y열의 값을 읽습니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!