Access 2000 file format
To define key/item pairs as you might use in a database to show a relationship between a Primary Key and a List Item. An example might be an AutoNumber field used as a Primary Key (PK) and a list of Product Names used as a List Item.
The global.asa is found directly under the root directory of your web server (which is often c:\inetput\wwwroot, or something similar, such as mine, which is c:\domains\mylastchoice.com\wwwroot). This file contains global variables as well as programming for the application object and session object that can be accessed by anyone using the site. This global.asa file is basically an ASP file that is processed whenever the web server is started.
The web root (ie. c:\domains\mylastchoice.com\wwwroot\) is the location
from which all other virtual paths (ie. http://www.somesite.com/db/database.mdb
-- a
DataBase file -- an Access database file) are designated.
The web server takes care of translating incoming URLs to the actual physical
path so that it can deliver files and other resources.
Response.Write(Server.MapPath("/"))