In an ASP page I am trying to use rs.absolutepage but continually get
ADODB.Recordset error '800a0cb3'
Object or provider is not capable of performing requested operation.
/classified search/basicCS.asp, line 90
I installed the latest sevice pak for JET(service pack 6.0) on the server and change my connection provider to 'SQLoEDB' and still get the same error. What should the provider or connection string be formatted as to use this property?
Iam using:
Set conn = Server.CreateObject("ADODB.Connection"
conn.Provider = "sqloledb"
conn.Properties("DataSource"
.Value = servername
conn.Properties("Initial Catalog"
.Value = Databasename
conn.Properties("User ID"
.Value = "sa"
conn.Properties("Password"
.Value = ""
conn.Open
Any pointers R much appreciated.
ADODB.Recordset error '800a0cb3'
Object or provider is not capable of performing requested operation.
/classified search/basicCS.asp, line 90
I installed the latest sevice pak for JET(service pack 6.0) on the server and change my connection provider to 'SQLoEDB' and still get the same error. What should the provider or connection string be formatted as to use this property?
Iam using:
Set conn = Server.CreateObject("ADODB.Connection"
conn.Provider = "sqloledb"
conn.Properties("DataSource"
conn.Properties("Initial Catalog"
conn.Properties("User ID"
conn.Properties("Password"
conn.Open
Any pointers R much appreciated.