ScottNomus
Programmer
I have done some HTML coding over the years but I new to the VB/ or ASP side of things. I have been given a project concerning a ACCESS database that we are wanting to give our customers access to via the web.
I export the table ,forms and query's need into "ASP" files. I try to run any thing and I get messages back similar to this.
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
/webcustomer/LogIn Screen.asp, line 12
Here is copy of the code pertaining to this above
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html;charset=windows-1252">
<TITLE>LogIn Screen</TITLE>
</HEAD>
<BODY>
<%
If IsObject(Session("C:\intetpub\ Then
Set conn = Session("C:\intetpub\Else
Set conn = Server.CreateObject("ADODB.Connection"
conn.open "WebCustomer.mdb","Admin","nomus1"
Set Session("WebCustomer.mdb_conn" = conn
End If
%>
<OBJECT ID="LogIn_Screenalx"
CLASSID="CLSID:812AE312-8B8E-11CF-93C8-00AA00C08FDF"
STYLE="TOP:0;LEFT:0;">
<PARAM NAME="ALXPATH" VALUE="LogIn Screenalx.asp">
</OBJECT>
</BODY>
</HTML>
Any Help would be greatly appreciated.
Thanks
Scott W.
I export the table ,forms and query's need into "ASP" files. I try to run any thing and I get messages back similar to this.
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
/webcustomer/LogIn Screen.asp, line 12
Here is copy of the code pertaining to this above
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html;charset=windows-1252">
<TITLE>LogIn Screen</TITLE>
</HEAD>
<BODY>
<%
If IsObject(Session("C:\intetpub\ Then
Set conn = Session("C:\intetpub\Else
Set conn = Server.CreateObject("ADODB.Connection"
conn.open "WebCustomer.mdb","Admin","nomus1"
Set Session("WebCustomer.mdb_conn" = conn
End If
%>
<OBJECT ID="LogIn_Screenalx"
CLASSID="CLSID:812AE312-8B8E-11CF-93C8-00AA00C08FDF"
STYLE="TOP:0;LEFT:0;">
<PARAM NAME="ALXPATH" VALUE="LogIn Screenalx.asp">
</OBJECT>
</BODY>
</HTML>
Any Help would be greatly appreciated.
Thanks
Scott W.