Are you a world traveler? ZoneTick is a cool utility that'll help you stay in touch over multiple time zones!
 
Server Page  
Nik Okuntseff  Windows 2000 Security Programming 

Server Page

This section describes my trivial server based page named 1.htm that I used for IIS security experiments in this chapter. Here is its entire content:

<html>
<head>
 <title>Hello, World!</title>
</head>
<body>
Hello, World!
</body>
</html>

Assuming it is placed into a virtual directory named "1" there are three different methods to address it using a local browser.

  • Using localhost string: http://localhost/1/1.htm
  • Using computer name: http://sputnik/1/1.htm
  • Using computer IP address: http://10.1.5.148/1/1.htm

If you are trying to access it from a remote browser then either IP addressing, or resolvable name addressing should work.
 

[ Contents | Home ]

Send comments and suggestions to niko@wrconsulting.com
Copyright © 2000 by Nik Okuntseff