set myConnection = CreateObject("ADODB.Connection")
   myConnection.Open "Driver={Microsoft dBASE Driver (*.dbf)};DBQ=C:\Inetpub\wwwroot\dbf; DriverID=533;"   Set rsSeroes = Server.CreateObject("ADODB.Recordset")
   ActiveConnection = myConnection
   CursorLocation = adUseClient
   CursorType = adOpenKeyset
   LockType = adLockOptimistic
   Source = "Series"
   Options = adCmdTable
   rsSeroes.Open Source,ActiveConnection,CursorType,LockType,Options