From the brief description of the problem you have described, the first thing that comes to my mind is the following (hope this helps):
Active Server Pages cannot be viewed in a web browser by typing in the file address in the browser as c:\inetpub\
like you can with an HTML file as c:\inetpub\
because an asp page MUST be processed and rendered by the WEB SERVER!
SO......In order to view or test your asp page, you must view the page in your browser as it is served or processed by the web server by typing into the browser address a URL which calls upon your web server such as your local web server host which was hopefully included in your installation of Windows 2000 Pro.
To do this, you call your local web host as follows:
This refers to a default.asp file which is residing on the web root which located at c:\inetpub\
if your default web site has the default documents set to default.htm, followed by default.asp in that order, the server will first serve the default.htm file if it is found at that location, if it is not present, then it will next look to see if default.asp is located there. If it is, then that is the document that will be served by the server if you simply refer to the URL as
You can set the default documents and the order to serve them in your Internet Service Manager.
Hope this helps and solves your problem.