客户端excel表如何导入远程sql server服务器
<%
'//客户端上传Excel,保存为upload/Excel.xls
.....
'//打开sql server
....
Conn.Open ...
'//打开Excel
Set ConnExcel = Server.Createobject("ADODB.Connection")
ExcelStr = "DBQ=" + server.mappath("upload/Excel.xls") + ";DRIVER={Microsoft Excel Driver (*.xls)};"
ConnExcel.Open ExcelStr
Set RSExcel = Server.CreateObject("ADODB.Recordset")
SQLExcel = "Select * From [Sheet1$]" '//你的Sheet1名
RSExcel.Open SQLExcel, ConnExcel, 3, 3
Set RS = Server.CreateObject("ADODB.RecordSet")
SQL = "Select * From [RegUser]"
RS.Open SQL, Conn, 1, 3
'----------------------------
'//添加begin
Do While Not RSExcel.EOF
RS.AddNew
For i=0 To RSExcel.Fields.Count-1
RS(i)=Trim(RSExcel(i))
Next
RS.Update
RSExcel.MoveNext
Loop
'//添加end
'----------------------------
RSExcel.Close
Set RSExcel = Nothing
RS.Close()
Set RS = Nothing
%>
☉asp执行ping命令 (2009-9-6 22:49:2)
☉ASP HTTP组件下载、简单介绍、属性方法及使用范例【全】 (2009-8-3 1:40:45)
☉最简单的asp中调用存储过程的实例 (2009-8-1 11:41:50)
☉测试空间是否支持XMLHTTP组件 (2009-7-13 23:8:17)
☉测试空间是否支持ADODB.STREAM的方法 (2009-7-12 12:52:16)
☉asp获取网页源代码并处理乱码的方法 (2009-7-11 22:15:34)
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。