TheCandyman
Technical User
I have always done connections to a Access DB which is on my server, but now i need to connect to seperate server (not on my domain) which has the DB i need to connect to. How do i do this? By IP? By URL?
Normally it's something like this
Normally it's something like this
Code:
Set Conn = CreateObject("ADODB.Connection")
strCon = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="& Server.MapPath ("/db/DB.mdb")
Conn.mode = 3
Conn.open strCon
Set rs = Server.CreateObject("ADODB.Recordset")