|
Asp and Microsoft Access 2002 problem
Hi I have some problem about ASP and Microsoft Access 2002. I just installed Microsoft Access 2002.
I use IIs to run ASP. When I wrote Select method. There is no problem. But the problem is when I wrote Delete method I got message "Could not delete from specified tables."
and when I wrote update method I got message "Cannot update. Database or object is read-oject." and sometime I got message
connect.asp could not use "; file already in use.
This is my connect.asp file
<%
set conn=server.createobject("adodb.connection")
conn.open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&server.mappath("db1.mdb")
%>
I think this file don't have a problem because when I use with Microsoft access 2000 there is no problem. I think the problem i smicrosoft access 2002
Please help
Last edited by gop373; 09-30-04 at 04:03 AM.
|