In your code there, I could see that you are using ACCESS mdb file.
Quote:
|
quote:the pages work well at my own home PC. so when i upload to the company intranet, everythg goes wrong. My company is using SQLserver 7.0,....
|
Are you trying to use MSAccess or SQL server 7.0?
I am confused. If everything goes wrong, then what is the error you get? You haven't mentioned about that. Can you post the error?
For help on connection strings you can take a look at
http://www.connectionstrings.com/
This is how I do use, if it is for SQL server.
Dim conn
Set conn = Server.CreateObject("ADODB.CONNECTION")
conn.ConnectionTimeout = 30
conn.Open "Provider=sqloledb;Data Source=Aron1;Initial Catalog=pubs;User Id=sa;Password=asdasd;"
-Vijay G