Hello sir,
I Got Big Prob with this Code.I want to insert some data in table names priviously created.
Every thing is OK.I create a FileDsn ad1.


<%
'Define file based DSN
strDSN = "FILEDSN=ad1.dsn"

'Instantiate the Connection object and open a database connection
Set cn = Server.CreateObject("ADODB.Connection")
cn.Open strDSN

'Define SQL SELECT statement
strSQL="INSERT INTO names (fname, lname) VALUES ('Jose','Lugo')"
'Use the Execute method to issue a SQL query to database
cn.Execute(strSQL)

%>

It shows error like this

Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query.
/test.asp, line 12


Pls help.