ahhh, nope, but I also cannot find strDbPathAndName in the common.inc file either, but I did find this:
'strCon = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & Server.MapPath("weekly_poll.mdb")
is that the same thing as what you were asking about?
or do I add the dim varible, strDbPathAndName, in common.inc file and make it = the dir I want to use before the strcon = section and change it to:
add this
Dim strDbPathAndName
and add this above the strCon call:
strDbPathAndName="c:\winnt\temp\weekly_poll.mdb"
and change this:
strCon = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("weekly_poll.mdb")
to this:
strCon = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & strDbPathAndName
?
Thanks for the help, It is really apperciated.