I´m using IIS with an Access database and it used to work pretty good but now I get an error in this line:
set Conn = server.createobject("ADODB.Connection"
Here´s some of the code
strProvider = "Driver={Microsoft Access Driver (*.mdb)};DBQ=C:\Inetpub\'Creates an instance of an Active Server component
set Conn = server.createobject("ADODB.Connection"
'Opens the connection to the data store
Conn.Open strProvider
'Instantiate Command object and use ActiveConnection property to
'attach connection to Command object
set RS = Conn.Execute(sSQL)
I´ve loked for an answer but they are too complicated and I´m new at ASP, please help!
set Conn = server.createobject("ADODB.Connection"
Here´s some of the code
strProvider = "Driver={Microsoft Access Driver (*.mdb)};DBQ=C:\Inetpub\'Creates an instance of an Active Server component
set Conn = server.createobject("ADODB.Connection"
'Opens the connection to the data store
Conn.Open strProvider
'Instantiate Command object and use ActiveConnection property to
'attach connection to Command object
set RS = Conn.Execute(sSQL)
I´ve loked for an answer but they are too complicated and I´m new at ASP, please help!