I am trying to copy a table, but without success. I use MS Access 2000 and ASP. Does anyone know how to do this?
The code is as follows:
<HTML><BODY><TABLE>
<%
Set conn = Server.CreateObject("ADODB.Connection")
conn.Open "DRIVER={Microsoft Access Driver (*.mdb)};DBQ="&Server.MapPath("../db/db2.mdb")
sqlString = "SELECT * FROM login SAVE TO tblUNIEK"
Conn.Execute sqlString
Conn.Close
%>
</TABLE>
</BODY></HTML>