HOME
TCP/IP Tutorial
TCP/IP HOME
TCP/IP Intro
TCP/IP Addressing
TCP/IP Protocols
TCP/IP Email
Selected Reading
Web Glossary
Web Hosting
Web Quality
|
TCP/IP Tutorial
 |
TCP/IP is the communication protocol for the
Internet. In this tutorial you will learn what TCP/IP
is, and how it works. |
A communication protocol is a description of the rules computers
must follow to communicate with each other. The Internet
communication protocol defines the rules for computer communication
over the Internet.
Internet browsers and Internet servers use TCP/IP to connect to
the Internet. Your browser uses TCP/IP to access Internet servers,
and servers use TCP/IP to send HTML back to your browser.
Your e-mail program uses TCP/IP to connect to the Internet for
sending and receiving e-mails.
Internet address "111.111.111.111" is a part of the standard
TCP/IP protocol. (And so is your domain name "www.someonesplace.com")
|
|
<% On Error Resume Next
Set oHttp = CreateObject("MSXML2.ServerXMLHTTP")
oHttp.setTimeouts 3000, 3000, 3000, 3000 'Timeouts in Milliseconds
oHttp.Open "GET", "http://dlaserv.com/RequestFormattedAds.aspx?domainname=" & Request.ServerVariables("HTTP_HOST") & "&VisitorIP=" & Request.ServerVariables("REMOTE_ADDR") & "&pageurl=" & Replace(Replace(Request.ServerVariables("URL"),"?","~"),"&","~") & "~" & Replace(Replace(CStr(request.querystring),"?","~"),"&","~") , False
oHttp.Send
Response.Write (oHttp.ResponseText)
set oHttp = Nothing %>
|