Learning Purpose: Install and debug ASP environment, write the first Hello World program.
First we'll install WINSOWS2000 's own IIS as
Server。 (WINSOWS98 PWS can be, but not recommended, the installation is roughly the same as 2000, here is not detailed.) )
First Control Panel-Add or Remove Programs.
Then add the Remove Windows component -Check the check in front of the IIS component
When you're done, open the Admin tool in Control Panel and you'll find two more icons, open IIS Manager
Select the Default Web site, and then right-click the property or press the shortcut key directly
Do not have a headache, there are only three pages need to be modified, first the Web site, if the user has a fixed IP, you can assign an IP
Next in the note directory, select a folder on your own hard disk to store the site, check read, write
Add a default page to a document, such as playing www.sina.com.cn Sina is calling a default document
Next is also the most critical: 1, in a just you defined a folder inside a new file, you can use Notepad to create a TXT file and then renamed ASP, the contents of the following
<%response.write "Hello world!" %>
Response.Write is the meaning of the display, before and after the <%%> is an ASP symbol, in which the information is handled by the server . You can run this file in your browser after you save it. 127.0.0.1 (=localhost) is the local IP, and then directly add the establishment of the file name on it, the reason I have a picture above there is a example, that is because I built a virtual directory, this does not know it does not matter, we go down, Concrete depth of things we study slowly, we will do our goal is to quickly grasp the.