Here is a code that you can test to make sure that everything works
Properly with GoDaddy and the connection string.
http://ee.cffcs.com/Q_2486
code
http://ee.cffcs.com/Q_2486
Make sure that when you test it out on your site, that you include the
QueryString ?id=1
If not, then it will error out. => Q_24862097.asp?id=1
Carrzkiss
Main Topics
Browse All Topics





by: carrzkissPosted on 2009-11-03 at 20:45:28ID: 25736465
Either of these will work for GoDaddy.
tion") EDB.12.0;D ata Source=" & _
tion") EDB.4.0;Da ta Source=" & _
Tested and proven to work.
Carrzkiss
<% ' Access 2007
Set objConn = CreateObject("ADODB.Connec
objConn.ConnectionString = "Provider=Microsoft.ACE.OL
Server.MapPath ("YourDB.accdb") & ";"
objConn.Open
%>
<% ' Pre-Access 2007
Set objConn = CreateObject("ADODB.Connec
objConn.ConnectionString = "Provider=Microsoft.Jet.OL
Server.MapPath ("YourDB.mdb") & ";"
objConn.Open
%>