© 2004, Robert K. Moniot Chapter 1 Introduction to Computers and the Internet.

Slides:



Advertisements
Similar presentations
4.01 How Web Pages Work.
Advertisements

Beginning Web Site Creation: Dreamweaver CS4.  WK1 & WK2  File Management  BlackBoard  SWS  Planning, Design, and HTML review  WK3 & WK4  Dreamweaver.
Internet and the web Summary of terms discusses and review.
© 2010, Robert K. Moniot Chapter 1 Introduction to Computers and the Internet 1.
INTERNET DATABASE Chapter 9. u Basics of Internet, Web, HTTP, HTML, URLs. u Advantages and disadvantages of Web as a database platform. u Approaches for.
Introduction to Web Database Processing
Internet…issues Managing the Internet
INTERNET DATABASE. Internet and E-commerce Internet – a worldwide collection of interconnected computer network Internet – a worldwide collection of interconnected.
Introduction to Web Interface Technology (CSE2030)
Introduction to Web Interface Technology (CSE2030)
Introduction 2: Internet, Intranet, and Extranet J394 – Perancangan Situs Web Program Sudi Manajemen Universitas Bina Nusantara.
Lesson 19 Internet Basics.
Evolved from ARPANET (Advanced Research Projects Agency of the U.S. Department of Defense) Was the first operational packet-switching network Began.
WEB DESIGN SOME FOUNDATIONS. SO WHAT IS THIS INTERNET.
Internet Vulnerabilities & Criminal Activities 1.2 – 9/12/2011 Structure of Internet Communications 1.2 – 9/12/2011 Structure of Internet Communications.
INTRODUCTION TO WEB DATABASE PROGRAMMING
CS 299 – Web Programming and Design CS299: Web Programming and Design Instructor: Dr. Fang (Daisy) Tang.
Internet Fundamentals and Background
CNIT 132 Intermediate HTML and CSS Course Overview.
Copyright © cs-tutorial.com. Introduction to Web Development In 1990 and 1991,Tim Berners-Lee created the World Wide Web at the European Laboratory for.
Databases and the Internet. Lecture Objectives Databases and the Internet Characteristics and Benefits of Internet Server-Side vs. Client-Side Special.
Connecting one computer to another computer creates a network.
2013Dr. Ali Rodan 1 Handout 1 Fundamentals of the Internet.
Lectures and Practicals Mon 8-10 SC1222 TUE SC1222 Office: SC Website: mis.csit.sci.tsu.ac.th/kanida.
Chapter 6 The World Wide Web. Web Pages Each page is an interactive multimedia publication It can include: text, graphics, music and videos Pages are.
© 2007 Cisco Systems, Inc. All rights reserved.Cisco Public ITE PC v4.0 Chapter 1 1 Network Services Networking for Home and Small Businesses – Chapter.
ITIS 1210 Introduction to Web-Based Information Systems Chapter 23 How Web Host Servers Work.
© 2007 Cisco Systems, Inc. All rights reserved.Cisco Public 1 Version 4.0 Network Services Networking for Home and Small Businesses – Chapter 6.
CIS 1310 – HTML & CSS 1 Introduction to the Internet.
Topics in Technology and Marketing In The Beginning.
Chapter 4 Networking and the Internet. © 2005 Pearson Addison-Wesley. All rights reserved 4-2 Chapter 4: Networking and the Internet 4.1 Network Fundamentals.
1 Web Development & Design Foundations with XHTML Chapter 1 Key Concepts.
CSc 4370/6370: Web Programming Summer 2012 Course goals:  understand the technology and protocols underlying the World Wide Web  become familiar with.
MySQL and PHP Internet and WWW. Computer Basics A Single Computer.
An Overview of the Internet: The Internet: Then and Now How the Internet Works Major Features of the Internet.
1 Welcome to CSC 301 Web Programming Charles Frank.
1. Introduction to Internet and to the Web. Motto People are using the web to build things they have not built or written or drawn or communicated anywhere.
Web Design (1) Terminology. Coding ‘languages’ (1) HTML - Hypertext Markup Language - describes the content of a web page CSS - Cascading Style Sheets.
The Web and Web Services Jim Graham NR 621 Spring 2009.
Introduction to Internet. Chapter 1 Objectives Origins of the Internet Packets and Routers TCP/IP DNS HTTP URL Client-Server.
TCP/IP (Transmission Control Protocol / Internet Protocol)
Topics in Technology and Marketing In The Beginning.
JavaScript and Ajax (Internet Background) Week 1 Web site:
 In the 1960s, ARPANET (Advanced Research Projects Agency Network), the internet’s predecessor, was invented  ARPANET used two technologies that are.
Chapter 6.  Internet and characteristics of Internet.  Various Internet protocols  Static IP addressing and Dynamic IP addressing Prepared by Saher.
Web Design Terminology Unit 2 STEM. 1. Accessibility – a web page or site that address the users limitations or disabilities 2. Active server page (ASP)
Website Design and Construction Services and Standards.
Internet Basics. The Internet: Then and Now The Internet was created by the Advanced Research Projects Agency (ARPA) and the U.S. Department of Defense.
Web Development & Design Foundations with XHTML Chapter 1 Key Concepts 1.
Internet and World Wide Web Introduction to the Internet.
1 Chapter 1 INTRODUCTION TO WEB. 2 Objectives In this chapter, you will: Become familiar with the architecture of the World Wide Web Learn about communication.
4.01 How Web Pages Work.
4.01 How Web Pages Work.
CS299: Web Programming and Design Instructor: Dr. Fang (Daisy) Tang
Understanding Web Server Programming
4.01 How Web Pages Work.
CISC103 Web Development Basics: Web site:
Introduction to the Web
JavaScript and Ajax (Internet Background)
CNIT 131 Internet Basics & Beginning HTML
Internet and the web Summary of terms discusses and review
Web Development & Design Chapter 1, Sections 4, 5 & 6
CISC103 Web Development Basics: Web site:
1 Introduction to the Internet.
Web Design & Development
COM 205 Multimedia Applications
Introduction to World Wide Web
4.01 How Web Pages Work.
4.01 How Web Pages Work.
COM 205 Multimedia Applications
Presentation transcript:

© 2004, Robert K. Moniot Chapter 1 Introduction to Computers and the Internet

© 2004, Robert K. Moniot The Internet Developed beginning in the 1960s, sponsored by ARPA (Dept. of Defense Advanced Research Projects Agency). Protocol for communication between computers is called TCP/IP: Transmission Control Protocol / Internet Protocol. Information is transmitted by packet switching: data is broken up into packets, which are then passed from one computer to the next until they reach their destination. This is in contrast to the phone system, which creates a temporary direct link between communicating parties. Packet switching is robust since it can route around disabled nodes and use multiple paths. But there is no guarantee packets will be delivered within any given time.

© 2004, Robert K. Moniot The Internet IP requires each connected computer to have a unique address: a number such as Clients such as home computers are generally assigned IP addresses dynamically (by DHCP) from a pool of available numbers upon connecting to the Internet. Server computers have static IP addresses. Computers can also be identified by names. Domain Name Service (DNS) translates between name and number. Internet names have two parts: a host name (the first component) and a domain (everything else). Example: erdos.dsm.fordham.edu

© 2004, Robert K. Moniot The Internet Various protocols are built on top of TCP/IP: – (SMTP) –File Transfer Protocol (FTP) –Drive and printer sharing protocols, e.g. NetBIOS –Network Time Protocol (NTP) for setting computers' clocks. –Hypertext Transport Protocol (HTTP): the World-Wide Web TCP requires computers to connect via numbered ports defined by the network software applications. Each protocol uses a different port. For instance, Web transactions usually use port 80. Note that the Web is just one of many protocols using the Internet.

© 2004, Robert K. Moniot The World-Wide Web Invented around 1990 by Tim Berners-Lee, a programmer at CERN (a physics lab in Geneva) to simplify sharing of information between research groups. Designed to be easy to program, easy to use, flexible and decentralized. Based on client-server model: –client computer runs a browser (e.g. Internet Explorer or Netscape) that requests information from a server –server computer runs a web server (e.g. Microsoft Internet Information Server or Apache Web Server) that listens for requests and sends back information

© 2004, Robert K. Moniot Client-Server Model Internet request response Server Client

© 2004, Robert K. Moniot Web Programming Elements HTML: Hyper-Text Markup Language. Provides formatting of text and graphics, as well as links between documents. CSS: Cascading Style Sheets. Provide more powerful and detailed control of style and formatting. JavaScript: a programming language for client-side scripting, to provide dynamically changing content. Java: a more powerful programming language for web applications on the client that can also run independently of the browser. Server-side scripting and programming (SHTML, ASP, PHP, CGI). These permit access to databases and other information located on the server.

© 2004, Robert K. Moniot Compatibility Unfortunately, competition between software companies has often resulted in the introduction of incompatible features so that web pages that work on one browser do not look right on a different one. The World-Wide Web Consortium ( exists to develop and define standards for HTML, CSS, etc. However, compliance with these standards is only partial at best. –Stick to features known to be compatible –Test your web pages on as many different browsers and platforms as possible.