|
Re: Wireless network at compitition.
You would need to make a DSN in your ODBC control panel. Otherwise you could do it DSN-less in ASP with the following VB code:
Dim Conn, path
path = "c:\inetpub\wwwroot\scouting.mdb"
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open "PROVIDER=MICROSOFT.JET.OLEDB.4.0;DATA SOURCE=" & path
__________________
Greg Liebowitz
Team 75 - RoboRaiders
Webmaster/Programmer
www.roboraiders.com
|