Hi
You can change the name of the database to any thing you want, and also open config.asp file in notepad and change the name of database there as well both must be same.
Now if you want to move the database to secure location you must know the physical path of that folder when you know that (if you do not know that ask your host) then open the file
Suhailkaleem.asp under the connections folder and then you will see this
'----[>>]-------- DSN LESS connection string ( Server.Mappath ) ----------[<<]----------
if dbtype =1 then
Path = vfolder & "/db/"&db_name
constr = "DBQ=" & Server.Mappath(path) & ";Driver={Microsoft Access Driver (*.mdb)};"
end if
'----[^^]-------- DSN_LESS connection string ( Server.Mappath ) --------[^^]----------
Change this to
'----[>>]-------- DSN LESS connection string ( Server.Mappath ) ----------[<<]----------
if dbtype =1 then
Path = "your_databse_physical_path"
constr = "DBQ=" & path & ";Driver={Microsoft Access Driver (*.mdb)};"
end if
'----[^^]-------- DSN_LESS connection string ( Server.Mappath ) --------[^^]----------
Let me know if you have any other questions
Thanks
Suhail Kaleem
Mailyoulike.com
admin38001.4234606481