tampabay420:

Was wondering what a www server sends to a web-browser letting it know there is a web site. Let me explain further... This is what the server gets when i make a request...
do you mean web page not website?

if is a web page you sould expect somthing like this

HTTP/1.0 200 OK
Server: IIS 5.0
Date: [somthing]
Content-type: html/text
(with some other http header items in there as well)

I'm guessing that you are asking about HTTP responces form the server, the best place for information on the HTTP protocol would be RFC2616, google is a good place to find this.

As for your program i will save you a lot time, have a look at this

http://www.antionline.com/showthread...hreadid=237181

in here is a program attached called achilles, which is an HTTP proxy, set your web browser to point to the proxy, and the proxy will capture all the HTTP information.

Hope this helps SittingDuck