I have recently begun moving my website from one hosting company to another. I have moved all of the files and databases. I have also setup Frontpage extensions on the new host. The webpages work correctly, but there is no link to the database.
This is the code I am having trouble with:
vStr = "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & Application("stuffdb")
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open vStr
Where is "stuffdb" defined and how do I determine if the driver is active? How do I reassociate the database to the host without the benefit of having the Frontpage project files?
This is the code I am having trouble with:
vStr = "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & Application("stuffdb")
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open vStr
Where is "stuffdb" defined and how do I determine if the driver is active? How do I reassociate the database to the host without the benefit of having the Frontpage project files?