So you open the web page, and nothing happens? There HAS to be an error somewhere.
Do you have a global.asa file that holds variables, and you are running the virtual directory as it's own application, etc.?
First, I would start by writing out some basic info so you can debug...
-
response.write server.mappath("/") & "/whatever/mydb.mdb"
-
response.end
-
This way, you can step through the code, to see if everything is working.
You should also have a custom 500.asp page which can be configured to show you where errors occur, plus give a nice friendly error page to clients. You can even have it email you the errors, so you can fix the site as quickly as possible. Just a suggestion.
Best regards,
Michael C. Gates