|
Hi all, just got my hosting sorted out with Well Thought Out Hosting and everything seems okay so far. However, I can't get my ASP pages to work. They are tied to a MS Acccess database with navigation keys on the page to scroll between records, or in this case pictures. My host supports an ODBC DSN which, forgive the noob question, is different to an OLEDB one? I'm using the connection string as follows in my connections asp document:
<%
' FileName="Connection_odbc_conn_dsn.htm"
' Type="ADO"
' DesigntimeType="ADO"
' HTTP="false"
' Catalog=""
' Schema=""
Dim MM_con17minutes_STRING
MM_con17minutes_STRING = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("Source.mdb")
%>
is this what's causing the errors? My database is located in a db folder on the host server, and is called "Source" (don't tell me that's a reserved name). The other pages and images are located in the root folder.
Thanks, Lol
|