✔ 最佳答案
You need a web server that can run asp codes. Windows Server (NT, 2000, 2003) and Windows XP Professional come with Internet Information Server (IIS) that can publish asp. The default Windows XP Professional installation does not have IIS installed. If your XP does not have IIS, install it from Control Panel->Add Programs->Add Window Components.
The physical location of the web site is c:\inetpub\wwwroot.
For example, your web stie is called myweb. Create a subfolder called myweb, ie,
c:\inetpub\wwwroot\myweb and put your asp files there.
You can test your web site by typing any of the below in the address bar of the browser:
http://localhost/myweb
http://127.0.0.1/myweb
http://your_computer_name/myweb
(assuming your start page is called default.asp, if not, include the page name in the address)
This wil get you started.