Is there a way to load only certain records into a recordset? For example: I have a table with 1000 records but only want records 250-500.
My connection is:
Set aConn = Server.CreateObject("ADODB.Connection")
DSNtemp="DRIVER={Microsoft Access Driver (*.mdb)}; "
DSNtemp=dsntemp & "DBQ=" & server.mappath("/myDB.mdb")
aConn.Open DSNtemp
My connection is:
Set aConn = Server.CreateObject("ADODB.Connection")
DSNtemp="DRIVER={Microsoft Access Driver (*.mdb)}; "
DSNtemp=dsntemp & "DBQ=" & server.mappath("/myDB.mdb")
aConn.Open DSNtemp