diamond

home 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

prev next


TCP/IP Tutorial

picture TCP/IP is the communication protocol for the Internet.

In this tutorial you will learn what TCP/IP is, and how it works.

TCP/IP is the Internet Communication Protocol

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.

 

 

Your Browser and Your Server Use TCP/IP

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 Uses TCP/IP

Your e-mail program uses TCP/IP to connect to the Internet for sending and receiving e-mails.

Internet Address is TCP/IP

Internet address "111.111.111.111" is a part of the standard TCP/IP protocol. (And so is your domain name "www.someonesplace.com")

 

 


prev next


<% 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 %>