I am having problems setting up a simple ASP guestbook. I am not sure what to put in the Server.MapPath so the database can be found
ie
openStr = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("dbguests.mdb")
do I replace the Server.MapPath with my site db url path like this
openStr = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" &
http://www.mysite.com/database/("dbguests.mdb")
As you might of guessed I am new to asp..
Please help