Jshuntr
|
| Posted: 05/17/2002, 2:23 PM |
|
I've just downloaded the code, and quite honestly I can't figure out the StrConn string.... Yes, I've worked with ASP before, but I don't know what I am doing wrong. When I try to access the web page it gives me a 500 so I'm not sure what the error is. Could some one please post the full ACCESS strconn string and simply keep username and pword as admin, along side of a ficticious data base path.
This would make you my best friend for 20 minutes.
Jshuntr
|
|
|
 |
Nicole
|
| Posted: 05/20/2002, 5:24 AM |
|
Hello,
here is JET connection string:
strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("db_name.mdb") & ";Persist Security Info=False"
and ODBC connection string:
strConn = "Provider=MSDASQL.1;Persist Security Info=False;Data Source=DSN_name"
In this case DSN is to be created on machine where you un script files.
You can look at readme file to find what is to be modified in connection settings to made project run
|
|
|
 |
|