Hello, I am trying to set up an asp site using dBase-III. Any ideas on how to do this? This is what I currently have...
Set objConn = Server.CreateObject("ADODB.Connection"
objConn.Open "DSN=Custmast"
Set rsCustmast=Server.CreateObject("ADODB.Recordset"
lsQuery="SELECT CUST_NAME FROM Custmast.dbf"
Set rsCustmast=objConn.Execute(lsQuery)
Also, does anyone know how many users can access the web page. I know that Access only lets ~64 users on before it crashes.
Thanks!
Set objConn = Server.CreateObject("ADODB.Connection"
objConn.Open "DSN=Custmast"
Set rsCustmast=Server.CreateObject("ADODB.Recordset"
lsQuery="SELECT CUST_NAME FROM Custmast.dbf"
Set rsCustmast=objConn.Execute(lsQuery)
Also, does anyone know how many users can access the web page. I know that Access only lets ~64 users on before it crashes.
Thanks!