DAY 2. Creating Forms

Size: px
Start display at page:

Download "DAY 2. Creating Forms"

Transcription

1 DAY 2 Creating Forms

2 LESSON LEARNING TARGETS I can identify and apply the different HTML tags to create a Web page form. I can describe the ways data is sent in a form in namevalue pairs. I can create a Web page form using appropriate HTML tags and attributes.

3 HTML Tags Used to Create Forms

4 HTML TAGS USED TO CREATE FORMS 4 Project 7: Creating a Form on a Web Page

5 HTML TAGS USED TO CREATE FORMS Form Tags Syntax: <form> </form> Creates a form that allows user input Required when creating forms Input Controls Created either using HTML tags OR attributes of HTML tags Required for input controls

6 HTML TAGS USED TO CREATE FORMS Input Controls with their own tags Textarea Boxes Selection Controls Input Controls as type Attributes of Input Tag Text Box Password Text Box Checkbox Radio Button Submit Button Reset Button

7 Project 7: Creating a Form on a Web Page 7

8 Project 7: Creating a Form on a Web Page 8

9 Creating a Form on a Web Page

10 CREATING A FORM ON A WEB PAGE Modifying the Bill Thomas Illustrations Order Form Web Page We will be modifying a file from the Project 5 Folder: orderform.htm

11 Project 7: Creating a Form on a Web Page 11

12 Project 7: Creating a Form on a Web Page Three Form Groupings Text Boxes Check Boxes Selection Control Radio Buttons Text Area Submit Button Reset Button

13 13 Location to Insert Form Method Project 7: Creating a Form on a Web Page

14 CREATING A FORM AND IDENTIFYING THE FORM PROCESS Form Tags Syntax: <form> </form> Used to designate an area of a Web page as a form Within the form tags, any number of form input controls can be added, based on the information desired from users

15 CREATING A FORM AND IDENTIFYING THE FORM PROCESS Form Attributes Action Attribute Syntax: action= Specifies the action to be taken when the form is submitted Information submitted can be: 1. sent to an address (functional; not the best way; we ll use in this project) 2. used to update a database

16 CREATING A FORM AND IDENTIFYING THE FORM PROCESS Form Attributes Action Attribute Processing info to a database involves programming beyond this course CGI (Common Gateway Interface) Script: a program written in a programming language (such as Perl) that sends the information to the server for processing

17 CREATING A FORM AND IDENTIFYING THE FORM PROCESS Form Attributes Method Attribute Syntax: method= Specifies the manner in which the data entered in the form is sent to the server to be processed Two primary methods: get method post method

18 CREATING A FORM AND IDENTIFYING THE FORM PROCESS Form Attributes Method Attribute get method sends the name-value pairs of data to the URL indicated in the action attribute adds the information to the end of the URL s file problem: if server limits size of URL, you can truncate relevant information

19 CREATING A FORM AND IDENTIFYING THE FORM PROCESS Form Attributes Method Attribute post method sends a separate data file with the namevalue pairs of data to the URL or address indicated in the action attribute preferred by most programmers, as it is more flexible

20 Project 7: Creating a Form on a Web Page Three Form Groupings Text Boxes Check Boxes Selection Control Radio Buttons Text Area Submit Button Reset Button

21 CREATING A FORM ON A WEB PAGE Modifying the Bill Thomas Illustrations Order Form Web Page Open from the Project 5 Folder: orderform.htm

22 22 Location to Insert Form Method Project 7: Creating a Form on a Web Page

23 CREATING A FORM AND IDENTIFYING THE FORM PROCESS Insert the following text to the order form code: <body> <center><font face="bazooka"...> <form method="post" action="mailto:billthomas@isp.com"> <p><b><font color="#000099">if you would like to order...

24 CREATING A FORM AND IDENTIFYING THE FORM PROCESS Insert the following text at the end of the order form code: <p>thank you for your order. <br /><b><font color="navy">bill Thomas</font></b></p> </form> </body> </html>

25

26 CHANGING THE TEXT MESSAGE Delete the lines between the following lines of code: <form method="post" **DELETE LINES BETWEEN THESE TAGS!! <p>thank you for your order. <br /><b><font color="navy">bill Thomas</font></b></p> </form>

27

28 CHANGING THE TEXT MESSAGE Insert these lines at the spot you deleted: <form method="post" <p><b>if you would like to order any pictures from the Bill Thomas Illustrations Web site, please make your selection on the order form below and click the Submit button to process the order.</b></p>

29 ADDING TEXT BOXES Creating seven text boxes for name, address, and information:

30 ADDING TEXT BOXES Sample: <input name= address type= text size= 25 maxlength= 25 > input tag: creates an input control type Attribute: specifies input control is a text box name Attribute: used to distinguish the value associated with that field from other fields (creates a place for answer value to be stored)

31 ADDING TEXT BOXES Sample (continued): <input name= address type= text size= 25 maxlength= 25 > size Attribute: indicates that the number of characters to appear in text box is 25 maxlength Attribute: limits the number of characters that can be entered in the text box to 25 characters Note: size can be less than maxlength

32 ADDING TEXT BOXES Insert the following code immediately after the paragraph just entered: (Note: the text before the tag shows up as a label before the text box) <p> Last Name: <input name="lastname" type="text" size="25"> First Name: <input name="firstname" type="text" size="25"> <br /> **Note: <br/> tag inserted to move boxes to next line**

33 ADDING TEXT BOXES Street Address: <input name="address" type="text" size="25"> <br /> City: <input name="city" type="text" size="25"> State: <input name="state" type="text" size="25">

34 ADDING TEXT BOXES ZIP: <input name="zip" type="text" size="12" maxlength="10"> <br /> Address: <input name=" " type="text" size="25"> </p> **NOTE: Each text box is created using an <input> tag and always has a type and name attribute**

35

36 ADDING CHECK BOXES Creating the Check Boxes: Recall: Check Boxes: appropriate when user can only select one or more choices from a set of choices (the choices are not mutually exclusive)

37 ADDING CHECK BOXES Sample: <input name= pictype type= checkbox value= cross >Cross Hatch input tag: creates an input control type Attribute: specifies input control is a check box name Attribute: used to distinguish the value associated with that field from other fields (creates a place for answer value to be stored)

38 ADDING CHECK BOXES Sample: <input name= pictype type= checkbox value= cross >Cross Hatch value Attribute: indicates the value to be submitted in the file if this check box is selected the text after the tag is the text displayed, in this case after the check box

39 ADDING CHECK BOXES Insert the following code immediately after the code for the name / address text boxes: <p> Select the types of picture(s) that you are interested in purchasing: <br /> <input name="pictype type="checkbox" value="cross">cross Hatch

40 ADDING CHECK BOXES <input name="pictype" type="checkbox" value="fullcolor">full Color <input name="pictype" type="checkbox" value="ink">ink Wash </p> **NOTE: Each text box is created using an <input> tag and always has a type and name attribute**

41 NOTICE These checkboxes are all connected by the same NAME All named pictype If had more than one set of checkboxes, each group would need its own unique name These checkboxes are then distinguished by their VALUE All have a unique value this is how we know what was selected Each followed by text so there is text after the box to tell the user what the box is for

42

43 Creating the selection menu: ADDING A SELECTION MENU

44 ADDING A SELECTION MENU Sample: Basic Selection Menu <select name= menuname > <option>first Option</option> <option>second Option</option> <option>third Option</option> </select> select tags: creates a selection menu as an input control (Note: doesn t use <input> tag!) name Attribute: used to creates a place for answer value to be stored

45 ADDING A SELECTION MENU Sample: Basic Selection Menu <select name= menuname > <option>first Option</option> <option>second Option</option> <option>third Option</option> </select> option tags: contains the choices that will appear in the selection menu since size is not indicated, only one item is displayed, along with a list arrow

46 ADDING A SELECTION MENU Insert the following code immediately after the code for the check boxes: <p>credit card type: <select name="payment"> <option>visa</option> <option>mastercard</option> <option>american Express</option> </select> </p>

47

48 More Advanced Selection Menus ADDING A SELECTION MENU Using various attributes, you can set the selection menu to display: multiple choices or only one drop-down list or scroll-through list preselected default choice Use variations to fit the purposes needed for the form

49 Basic Selection Menu ADDING A SELECTION MENU

50 Size Attribute of three ADDING A SELECTION MENU

51 ADDING A SELECTION MENU Using Multiple Attribute (allows more than one selection to be made)

52 ADDING A SELECTION MENU Setting a choice as selected by default

53 NOTICE Multiple and Selected attributes Are only words (like resize) when used inside of a tag

54 ADDING ADDITIONAL TEXT BOXES Additional Text Boxes on our Form After Credit Card Selection Menu, we need two additional Text Boxes: Credit Card Number: maximum 20 characters Credit Card Expiration Date: maximum 4 characters (MMYY format)

55 ADDING ADDITIONAL TEXT BOXES Insert the following code immediately after the code for the selection menu: <p> Credit card number: <input name="cardnum" type="text" size="20" maxlength="20">

56 ADDING ADDITIONAL TEXT BOXES Expiration date: <input name="cardexp" type="text" size="4" maxlength="4"> </p>

57

58 Worksheet 6B HOMEWORK

HTML Tables and Forms. Outline. Review. Review. Example Demo/ Walkthrough. CS 418/518 Web Programming Spring Tables to Display Data"

HTML Tables and Forms. Outline. Review. Review. Example Demo/ Walkthrough. CS 418/518 Web Programming Spring Tables to Display Data CS 418/518 Web Programming Spring 2014 HTML Tables and Forms Dr. Michele Weigle http://www.cs.odu.edu/~mweigle/cs418-s14/ Outline! Assigned Reading! Chapter 4 "Using Tables to Display Data"! Chapter 5

More information

Spring 2014 Interim. HTML forms

Spring 2014 Interim. HTML forms HTML forms Forms are used very often when the user needs to provide information to the web server: Entering keywords in a search box Placing an order Subscribing to a mailing list Posting a comment Filling

More information

Overview of Forms. Forms are used all over the Web to: Types of forms: Accept information Provide interactivity

Overview of Forms. Forms are used all over the Web to: Types of forms: Accept information Provide interactivity HTML Forms Overview of Forms Forms are used all over the Web to: Accept information Provide interactivity Types of forms: Search form, Order form, Newsletter sign-up form, Survey form, Add to Cart form,

More information

Last &me: Javascript (forms and func&ons)

Last &me: Javascript (forms and func&ons) Let s debug some code together: hkp://www.clsp.jhu.edu/~anni/cs103/test_before.html hkp://www.clsp.jhu.edu/~anni/cs103/test_arer.html

More information

HTML: Fragments, Frames, and Forms. Overview

HTML: Fragments, Frames, and Forms. Overview HTML: Fragments, Frames, and Forms Michael B. Spring Department of Information Science and Telecommunications University of Pittsburgh spring@ imap.pitt.edu http://www.sis. pitt.edu/~spring Overview Fragment

More information

HTML Forms. By Jaroslav Mohapl

HTML Forms. By Jaroslav Mohapl HTML Forms By Jaroslav Mohapl Abstract How to write an HTML form, create control buttons, a text input and a text area. How to input data from a list of items, a drop down list, and a list box. Simply

More information

Chapter 1 FORMS. SYS-ED/ Computer Education Techniques, Inc.

Chapter 1 FORMS. SYS-ED/ Computer Education Techniques, Inc. Chapter 1 FORMS SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: How to use forms and the related form types. Controls for interacting with forms. Menus and presenting users with

More information

HTML Form. Kanida Sinmai

HTML Form. Kanida Sinmai HTML Form Kanida Sinmai ksinmai@tsu.ac.th http://mis.csit.sci.tsu.ac.th/kanida HTML Form HTML forms are used to collect user input. The element defines an HTML form: . form elements. Form

More information

Forms, CGI. Objectives

Forms, CGI. Objectives Forms, CGI Objectives The basics of HTML forms How form content is submitted GET, POST Elements that you can have in forms Responding to forms Common Gateway Interface (CGI) Later: Servlets Generation

More information

Web Programming. Based on Notes by D. Hollinger Also Java Network Programming and Distributed Computing, Chs.. 9,10 Also Online Java Tutorial, Sun.

Web Programming. Based on Notes by D. Hollinger Also Java Network Programming and Distributed Computing, Chs.. 9,10 Also Online Java Tutorial, Sun. Web Programming Based on Notes by D. Hollinger Also Java Network Programming and Distributed Computing, Chs.. 9,10 Also Online Java Tutorial, Sun. 1 World-Wide Wide Web (Tim Berners-Lee & Cailliau 92)

More information

CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB

CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB Unit 8 HTML Forms and Basic CGI Slides based on course material SFU Icons their respective owners 1 Learning Objectives In this unit you will

More information

Creating and Building Websites

Creating and Building Websites Creating and Building Websites Stanford University Continuing Studies CS 21 Mark Branom branom@alumni.stanford.edu Course Web Site: http://web.stanford.edu/group/csp/cs21 Week 7 Slide 1 of 25 Week 7 Unfinished

More information

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel.

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel. Adobe Dreamweaver CS6 Project 3 guide How to create forms You can use forms to interact with or gather information from site visitors. With forms, visitors can provide feedback, sign a guest book, take

More information

HTML and JavaScript: Forms and Validation

HTML and JavaScript: Forms and Validation HTML and JavaScript: Forms and Validation CISC 282 October 18, 2017 Forms Collection of specific elements know as controls Allow the user to enter information Submit the data to a web server Controls are

More information

NETB 329 Lecture 13 Python CGI Programming

NETB 329 Lecture 13 Python CGI Programming NETB 329 Lecture 13 Python CGI Programming 1 of 83 What is CGI? The Common Gateway Interface, or CGI, is a set of standards that define how information is exchanged between the web server and a custom

More information

core programming HTML Forms Sending Data to Server-Side Programs Marty Hall, Larry Brown

core programming HTML Forms Sending Data to Server-Side Programs Marty Hall, Larry Brown core programming HTML Forms Sending Data to Server-Side Programs 1 2001-2003 Marty Hall, Larry Brown http:// Agenda Sending data from forms The FORM element Text controls Push buttons Check boxes and radio

More information

6Lesson 6: Web Forms Objectives

6Lesson 6: Web Forms Objectives 6Lesson 6: Web Forms Objectives By the end of this lesson, you will be able to: 2.4.1: Construct and test HTML forms. 2.4.2: Identify ways that CGI scripts can parse and transmit information from a form,

More information

Advanced HTML. Introduction. Frames HTML Forms CGI Scripts Dynamic Documents HTML Tools Next-Generation HTML

Advanced HTML. Introduction. Frames HTML Forms CGI Scripts Dynamic Documents HTML Tools Next-Generation HTML Introduction Frames HTML Forms CGI Scripts Dynamic Documents HTML Tools Next-Generation HTML From Greenlaw/Hepp, In-line/On-line: Fundamentals of the Internet and the World Wide Web 1 Frames Frame Usage

More information

Outline of Lecture 5. Course Content. Objectives of Lecture 6 CGI and HTML Forms

Outline of Lecture 5. Course Content. Objectives of Lecture 6 CGI and HTML Forms Web-Based Information Systems Fall 2004 CMPUT 410: CGI and HTML Forms Dr. Osmar R. Zaïane University of Alberta Outline of Lecture 5 Introduction Poor Man s Animation Animation with Java Animation with

More information

WEBD 236 Web Information Systems Programming

WEBD 236 Web Information Systems Programming WEBD 236 Web Information Systems Programming Week 4 Copyright 2013-2017 Todd Whittaker and Scott Sharkey (sharkesc@franklin.edu) Agenda This week s expected outcomes This week s topics This week s homework

More information

Form Overview. Form Processing. The Form Element. CMPT 165: Form Basics

Form Overview. Form Processing. The Form Element. CMPT 165: Form Basics Form Overview CMPT 165: Form Basics Tamara Smyth, tamaras@cs.sfu.ca School of Computing Science, Simon Fraser University October 26, 2011 A form is an HTML element that contains and organizes objects called

More information

HTML Tables and. Chapter Pearson. Fundamentals of Web Development. Randy Connolly and Ricardo Hoar

HTML Tables and. Chapter Pearson. Fundamentals of Web Development. Randy Connolly and Ricardo Hoar HTML Tables and Forms Chapter 5 2017 Pearson http://www.funwebdev.com - 2 nd Ed. HTML Tables A grid of cells A table in HTML is created using the element Tables can be used to display: Many types

More information

Databases HTML and PHP I. (GF Royle, N Spadaccini ) HTML/PHP I 1 / 28

Databases HTML and PHP I. (GF Royle, N Spadaccini ) HTML/PHP I 1 / 28 Databases HTML and PHP I (GF Royle, N Spadaccini 2006-2010) HTML/PHP I 1 / 28 This lecture The main purpose of this lecture is to cover HTML forms and how a PHP script can obtain values from the user.

More information

Summary 4/5. (contains info about the html)

Summary 4/5. (contains info about the html) Summary Tag Info Version Attributes Comment 4/5

More information

PYTHON CGI PROGRAMMING

PYTHON CGI PROGRAMMING PYTHON CGI PROGRAMMING http://www.tutorialspoint.com/python/python_cgi_programming.htm Copyright tutorialspoint.com The Common Gateway Interface, or CGI, is a set of standards that define how information

More information

cwhois Manual Copyright Vibralogix. All rights reserved.

cwhois Manual Copyright Vibralogix. All rights reserved. cwhoistm V2.12 cwhois Manual Copyright 2003-2015 Vibralogix. All rights reserved. This document is provided by Vibralogix for informational purposes only to licensed users of the cwhois product and is

More information

COMS 359: Interactive Media

COMS 359: Interactive Media COMS 359: Interactive Media Agenda Project #3 Review Forms (con t) CGI Validation Design Preview Project #3 report Who is your client? What is the project? Project Three action= http://...cgi method=

More information

CS Exam 1 Review Suggestions - Spring 2017

CS Exam 1 Review Suggestions - Spring 2017 CS 328 - Exam 1 Review Suggestions p. 1 CS 328 - Exam 1 Review Suggestions - Spring 2017 last modified: 2017-02-16 You are responsible for material covered in class sessions and homeworks; but, here's

More information

Forms, CGI. Cristian Bogdan 2D2052 / 2D1335 F5 1

Forms, CGI. Cristian Bogdan 2D2052 / 2D1335 F5 1 Forms, CGI Cristian Bogdan 2D2052 / 2D1335 F5 1 Objectives The basics of HTML forms How form content is submitted GET, POST Elements that you can have in forms Responding to forms Common Gateway Interface

More information

Web Forms. Survey or poll Contact us Sign up for an newsletter Register for an event

Web Forms. Survey or poll Contact us Sign up for an  newsletter Register for an event Web Forms Survey or poll Contact us Sign up for an email newsletter Register for an event Web Forms All our web pages thus far have had a one-way flow of information, from us to our web visitors. Now we'll

More information

PHP: File upload. Unit 27 Web Server Scripting L3 Extended Diploma

PHP: File upload. Unit 27 Web Server Scripting L3 Extended Diploma PHP: File upload Unit 27 Web Server Scripting L3 Extended Diploma 2016 Criteria M2 M2 Edit the contents of a text file on a web server using web server scripting Tasks We will go through a worked example

More information

Outline. Introducing Form. Introducing Forms 2/21/2013 INTRODUCTION TO WEB DEVELOPMENT AND HTML

Outline. Introducing Form. Introducing Forms 2/21/2013 INTRODUCTION TO WEB DEVELOPMENT AND HTML Outline INTRODUCTION TO WEB DEVELOPMENT AND HTML Introducing Forms The element Focus Sending form data to the server Exercise Lecture 07: Forms - Spring 2013 Introducing Form Any form is declared

More information

Web Design and Development ACS Chapter 13. Using Forms 11/27/2018 1

Web Design and Development ACS Chapter 13. Using Forms 11/27/2018 1 Web Design and Development ACS-1809 Chapter 13 Using Forms 11/27/2018 1 Chapter 13: Employing Forms Understand the concept and uses of forms in web pages Create a basic form Validate the form content 11/27/2018

More information

CGI Programming. What is "CGI"?

CGI Programming. What is CGI? CGI Programming What is "CGI"? Common Gateway Interface A means of running an executable program via the Web. CGI is not a Perl-specific concept. Almost any language can produce CGI programs even C++ (gasp!!)

More information

Creating Forms. Speaker: Ray Ryon

Creating Forms. Speaker: Ray Ryon Creating Forms Speaker: Ray Ryon In this lesson we will discuss how to create a web form. Forms are useful because they allow for input from a user. That input can then be used to respond to the user with

More information

Lecture (03) from static HTML to

Lecture (03) from static HTML to Lecture (03) from static HTML to dynamic CGI By: Dr. Ahmed ElShafee ١ Dr. Ahmed ElShafee, ACU : Spring 2016, Web Programming Forms Forms add the ability to web pages to not only provide the person viewing

More information

Networking and Internet

Networking and Internet Today s Topic Lecture 13 Web Fundamentals Networking and Internet LAN Web pages Web resources Web client Web Server HTTP Protocol HTML & HTML Forms 1 2 LAN (Local Area Network) Networking and Internet

More information

Q1. What is JavaScript?

Q1. What is JavaScript? Q1. What is JavaScript? JavaScript was designed to add interactivity to HTML pages JavaScript is a scripting language A scripting language is a lightweight programming language JavaScript is usually embedded

More information

CSE 154 LECTURE 8: FORMS

CSE 154 LECTURE 8: FORMS CSE 154 LECTURE 8: FORMS Web data most interesting web pages revolve around data examples: Google, IMDB, Digg, Facebook, YouTube, Rotten Tomatoes can take many formats: text, HTML, XML, multimedia many

More information

The Hypertext Markup Language (HTML) Part II. Hamid Zarrabi-Zadeh Web Programming Fall 2013

The Hypertext Markup Language (HTML) Part II. Hamid Zarrabi-Zadeh Web Programming Fall 2013 The Hypertext Markup Language (HTML) Part II Hamid Zarrabi-Zadeh Web Programming Fall 2013 2 Outline HTML Structures Tables Forms New HTML5 Elements Summary HTML Tables 4 Tables Tables are created with

More information

Forms, CGI. HTML forms. Form example. Form example...

Forms, CGI. HTML forms. Form example. Form example... Objectives HTML forms The basics of HTML forms How form content is submitted GET, POST Elements that you can have in forms Responding to forms CGI the Common Gateway Interface Later: Servlets Generation

More information

Server-Side Web Programming: Python (Part 1) Copyright 2017 by Robert M. Dondero, Ph.D. Princeton University

Server-Side Web Programming: Python (Part 1) Copyright 2017 by Robert M. Dondero, Ph.D. Princeton University Server-Side Web Programming: Python (Part 1) Copyright 2017 by Robert M. Dondero, Ph.D. Princeton University 1 Objectives You will learn about Server-side web programming in Python Common Gateway Interface

More information

Lesson 3. Form By Raymond Tsang. Certificate Programme in Cyber Security

Lesson 3. Form By Raymond Tsang. Certificate Programme in Cyber Security Lesson 3 Form By Raymond Tsang Certificate Programme in Cyber Security What is a form How to create a form Getting input from users Generate a result It s a section of a document containing normal content,

More information

USQ/CSC2406 Web Publishing

USQ/CSC2406 Web Publishing USQ/CSC2406 Web Publishing Lecture 4: HTML Forms, Server & CGI Scripts Tralvex (Rex) Yeap 19 December 2002 Outline Quick Review on Lecture 3 Topic 7: HTML Forms Topic 8: Server & CGI Scripts Class Activity

More information

B. V. Patel Institute of Business Management, Computer & Information Technology, UTU

B. V. Patel Institute of Business Management, Computer & Information Technology, UTU B. C. A (Semester I) 030010108: Introduction to Web Design Lesson Plan Objective: To provide basic understanding of web and HTML for designing web pages in conjunction with HTML tags, text, videos and

More information

Web Focused Programming With PHP

Web Focused Programming With PHP Web Focused Programming With PHP May 20 2014 Thomas Beebe Advanced DataTools Corp (tom@advancedatatools.com) Tom Beebe Tom is a Senior Database Consultant and has been with Advanced DataTools for over

More information

National Training and Education Resource. Authoring Course. Participant Guide

National Training and Education Resource. Authoring Course. Participant Guide National Training and Education Resource Authoring Course Participant Guide Table of Contents: OBJECTIVES... 4 OVERVIEW OF NTER... 5 System Requirements... 5 NTER Capabilities... 6 What is the SCORM PlayerWhat

More information

chapter 7 Interacting with Users Tell me and I will forget. Show me and I will remember. Involve me and I will understand.

chapter 7 Interacting with Users Tell me and I will forget. Show me and I will remember. Involve me and I will understand. chapter 7 Interacting with Users Tell me and I will forget. Show me and I will remember. Involve me and I will understand. Aristotle In this chapter, you will learn how to: Define the elements of an HTML

More information

ABSOLUTE FORM PROCESSOR ADMINISTRATION OPTIONS

ABSOLUTE FORM PROCESSOR ADMINISTRATION OPTIONS ABSOLUTE FORM PROCESSOR ADMINISTRATION OPTIONS The Absolute Form Processor is very easy to use. In order to operate the system, you just need the menu at the top of the screen. There, you ll find all the

More information

D B M G. Introduction to databases. Web programming: the HTML language. Web programming. The HTML Politecnico di Torino 1

D B M G. Introduction to databases. Web programming: the HTML language. Web programming. The HTML Politecnico di Torino 1 Web programming The HTML language The HTML language Basic concepts User interfaces in HTML Forms Tables Passing parameters stored in forms @2017 Politecnico di Torino 1 Basic concepts HTML: HyperText Markup

More information

LESSON LEARNING TARGETS

LESSON LEARNING TARGETS DAY 3 Frames LESSON LEARNING TARGETS I can describe the attributes of the tag. I can write code to create frames for displaying Web pages with headings, menus, and other content using the

More information

CITS1231 Web Technologies

CITS1231 Web Technologies CITS1231 Web Technologies Client side id Form Validation using JavaScript Objectives Recall how to create forms on web pages Understand the need for client side validation Know how to reference form elements

More information

Web forms and CGI scripts

Web forms and CGI scripts Web forms and CGI scripts Dr. Andrew C.R. Martin andrew.martin@ucl.ac.uk http://www.bioinf.org.uk/ Aims and objectives Understand how the web works Be able to create forms on HTML pages Understand how

More information

Practice problems. 1 Draw the output for the following code. 2. Draw the output for the following code.

Practice problems. 1 Draw the output for the following code. 2. Draw the output for the following code. Practice problems. 1 Draw the output for the following code. form for Spring Retreat Jacket company Spring Retreat Jacket Order Form please fill in this form and click on

More information

Islamic University of Gaza Faculty of Engineering Department of Computer Engineering ECOM Advanced Internet Technology Lab.

Islamic University of Gaza Faculty of Engineering Department of Computer Engineering ECOM Advanced Internet Technology Lab. Islamic University of Gaza Faculty of Engineering Department of Computer Engineering ECOM 5049 Advanced Internet Technology Lab Lab # 1 Eng. Haneen El-masry February, 2015 Objective To be familiar with

More information

1 Form Basics CSC309

1 Form Basics CSC309 1 Form Basics Web Data 2! Most interesting web pages revolve around data! examples: Google, IMDB, Digg, Facebook, YouTube! can take many formats: text, HTML, XML, multimedia! Many of them allow us to access

More information

DOM Primer Part 2. Contents

DOM Primer Part 2. Contents DOM Primer Part 2 Contents 1. Event Programming 1.1 Event handlers 1.2 Event types 1.3 Structure modification 2. Forms 2.1 Introduction 2.2 Scripting interface to input elements 2.2.1 Form elements 2.2.2

More information

c360 Web Connect Configuration Guide Microsoft Dynamics CRM 2011 compatible c360 Solutions, Inc. c360 Solutions

c360 Web Connect Configuration Guide Microsoft Dynamics CRM 2011 compatible c360 Solutions, Inc.   c360 Solutions c360 Web Connect Configuration Guide Microsoft Dynamics CRM 2011 compatible c360 Solutions, Inc. www.c360.com c360 Solutions Contents Overview... 3 Web Connect Configuration... 4 Implementing Web Connect...

More information

Chapter 3 HTML Multimedia and Inputs

Chapter 3 HTML Multimedia and Inputs Sungkyunkwan University Chapter 3 HTML Multimedia and Inputs Prepared by D. T. Nguyen and H. Choo Web Programming Copyright 2000-2018 Networking Laboratory 1/45 Copyright 2000-2012 Networking Laboratory

More information

Forms, Form Events, and Validation. Bok, Jong Soon

Forms, Form Events, and Validation. Bok, Jong Soon Forms, Form Events, and Validation Bok, Jong Soon jongsoon.bok@gmail.com www.javaexpert.co.kr How to Access to Form In JavaScript, access forms through the Document Object Model (DOM). The first approach

More information

DocProtect & Safe Activation

DocProtect & Safe Activation DocProtect & Safe Activation Excel Software www.excelsoftware.com DocProtect can generate a computer-unique, password-protected Mac or Windows application from a variety of source document formats. This

More information

HTML Forms IT WS I - Lecture 11

HTML Forms IT WS I - Lecture 11 HTML Forms IT WS I - Lecture 11 Saurabh Barjatiya International Institute Of Information Technology, Hyderabad 04 October, 2009 Contents Seeing submitted values 1 Seeing submitted values 2 3 Seeing submitted

More information

Dreamweaver Forms Outline

Dreamweaver Forms Outline Dreamweaver Forms Outline Discuss the different types of scripts that we are going to be using o Form Mail Script The different tools o Insert Form o Insert Text Field o Insert Button o Insert Checkbox

More information

Building Web Based Application using HTML

Building Web Based Application using HTML Introduction to Hypertext Building Web Based Application using HTML HTML: Hypertext Markup Language Hypertext links within and among Web documents connect one document to another Origins of HTML HTML is

More information

Using Dreamweaver. 5 More Page Editing. Bulleted and Numbered Lists

Using Dreamweaver. 5 More Page Editing. Bulleted and Numbered Lists Using Dreamweaver 5 By now, you should have a functional template, with one simple page based on that template. For the remaining pages, we ll create each page based on the template and then save each

More information

Overview. Guide for the Authorized User

Overview. Guide for the Authorized User Overview This guide demonstrates how to view your student s account balance and make payments for your student as an Authorized User. Note: Your student must first login to MySJSU and set up an authorized

More information

HTML WORKSHEET Explain HTML HEAD Tag Title Tag BASEFONT Tag

HTML WORKSHEET Explain HTML HEAD Tag Title Tag BASEFONT Tag vinsri76@yahoo.com HTML WORKSHEET Explain HTML HEAD Tag Title Tag BASEFONT Tag 1. 2. Text Editor 1. 2. Graphic Editor Name & Explain Attribute of Body Tags 1. 2. 1. 2. 3. 4. Name & Explain Attribute of

More information

Collecting Information with Forms

Collecting Information with Forms C H A P T E R 1 Collecting Information with Forms O B J E C T I V E S In this chapter, you learn how to: Insert a form Create different types of text fields Insert Submit, Reset, and other buttons Present

More information

IEEM 230. PHP Basics, Part IV. Objectives of the lab:

IEEM 230. PHP Basics, Part IV. Objectives of the lab: IEEM 230. PHP Basics, Part IV Objectives of the lab: Learn the fundamentals of PHP - different types of data inputs using web FORMS - I/O from files - more PHP practice Standard PHP reference website:

More information

Registration Fields Manager extension for Magento2. User Guide

Registration Fields Manager extension for Magento2. User Guide Registration Fields Manager extension for Magento2 User Guide version 1.0 Website: http://www.itoris.com Page 1 Contents 1. Introduction... 3 2. Installation... 3 2.1. System Requirements... 3 2.2. Installation...

More information

Go to click on the Online Giving icon at the bottom of the page, A new window will open up that looks like this:

Go to   click on the Online Giving icon at the bottom of the page, A new window will open up that looks like this: Go to www.newlifeodessa.org, click on the Online Giving icon at the bottom of the page, A new window will open up that looks like this: 1. At the bottom of the area, under Log In, click Need an Account

More information

CS105 Perl: Perl CGI. Nathan Clement 24 Feb 2014

CS105 Perl: Perl CGI. Nathan Clement 24 Feb 2014 CS105 Perl: Perl CGI Nathan Clement 24 Feb 2014 Agenda We will cover some CGI basics, including Perl-specific CGI What is CGI? Server Architecture GET vs POST Preserving State in CGI URL Rewriting, Hidden

More information

Virtual Terminal User Guide

Virtual Terminal User Guide With the Clearent Virtual Terminal, merchants can accept credit card payments using the web browser on a computer, tablet, or mobile device. In this guide you will find step-by-step instructions for using

More information

HTML 5 Tables and Forms

HTML 5 Tables and Forms Tables for Tabular Data Display HTML 5 Tables and Forms Tables can be used to represet information in a two-dimensional format. Typical table applications include calendars, displaying product catelog,

More information

How to Buy A Bus Pass

How to Buy A Bus Pass How to Buy A Bus Pass How to Buy a RideTRAFFIX Bus Pass 2018 Step One: Go to the website Go to http://ridetraffix.com/buyapass.aspx Step Two: Enter Your Address Correctly Type in your Street number and

More information

Hyperlinks, Tables, Forms and Frameworks

Hyperlinks, Tables, Forms and Frameworks Hyperlinks, Tables, Forms and Frameworks Web Authoring and Design Benjamin Kenwright Outline Review Previous Material HTML Tables, Forms and Frameworks Summary Review/Discussion Email? Did everyone get

More information

Advanced HTML Scripting WebGUI Users Conference

Advanced HTML Scripting WebGUI Users Conference Advanced HTML Scripting 2004 WebGUI Users Conference XHTML where did that x come from? XHTML =? Extensible Hypertext Markup Language Combination of HTML and XML More strict than HTML Things to Remember

More information

I will link the following rough sketch of my mom to our class homepage: Code Used

I will link the following rough sketch of my mom to our class homepage: Code Used Assignment Eight: Fabulous Forms INTRODUCTION Let's start off this assignment with some work, shall we? (rubbing hands together as a mob boss would). Go to your page #3 (the one listing likes and dislikes)

More information

AppProtect & Safe Activation

AppProtect & Safe Activation AppProtect & Safe Activation Excel Software www.excelsoftware.com This paper describes a step-by-step process to protect a Mac or Windows application using AppProtect. The protected application is linked

More information

Java4350: Form Processing with JSP

Java4350: Form Processing with JSP OpenStax-CNX module: m48085 1 Java4350: Form Processing with JSP R.L. Martinez, PhD This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Abstract This module

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

Wishlist 1-Click Registration Manual

Wishlist 1-Click Registration Manual Wishlist 1-Click Registration Manual Table of Contents Use the quick navigation links below to navigate through the manual: Introduction to Wishlist 1-Click Registration Complete Activation Process Summary

More information

Web Site Design and Development Lecture 23. CS 0134 Fall 2018 Tues and Thurs 1:00 2:15PM

Web Site Design and Development Lecture 23. CS 0134 Fall 2018 Tues and Thurs 1:00 2:15PM Web Site Design and Development Lecture 23 CS 0134 Fall 2018 Tues and Thurs 1:00 2:15PM List box The element shows a list of options in a scroll-able box when size is

More information

<body> <form id="myform" name="myform"> <!-- form child elements go in here --> </form> </body>

<body> <form id=myform name=myform> <!-- form child elements go in here --> </form> </body> ITEC 136 Business Programming Concepts Week 08, Part 01 Overview 1 Week 7 Review Sentinel controlled loops Results controlled loops Flag controlled loops break and continue keywords Nested loops Loop variable

More information

AssistConnect Best Practices and Standard Operating Procedures

AssistConnect Best Practices and Standard Operating Procedures AssistConnect Best Practices and Standard Operating Procedures Overview This Standard Operating Procedure is intended as an overview of the AssistConnect system. AssistConnect is the system for entering

More information

SMARTPROS LTD. PROFESSIONAL EDUCATION CENTER USER S GUIDE BANKING EDITION

SMARTPROS LTD. PROFESSIONAL EDUCATION CENTER USER S GUIDE BANKING EDITION - 1 - SMARTPROS LTD. PROFESSIONAL EDUCATION CENTER USER S GUIDE BANKING EDITION Document version 1.0 - Banking Updated April 20, 2006 SmartPros Banking by SmartPros Ltd. Support: admin@smartpros.com (914)

More information

HTML HTML/XHTML HTML / XHTML HTML HTML: XHTML: (extensible HTML) Loose syntax Few syntactic rules: not enforced by HTML processors.

HTML HTML/XHTML HTML / XHTML HTML HTML: XHTML: (extensible HTML) Loose syntax Few syntactic rules: not enforced by HTML processors. HTML HTML/XHTML HyperText Mark-up Language Basic language for WWW documents Format a web page s look, position graphics and multimedia elements Describe document structure and formatting Platform independent:

More information

CAL 9-2: Café Soylent Green Chapter 12

CAL 9-2: Café Soylent Green Chapter 12 CAL 9-2: Café Soylent Green Chapter 12 This version is for those students who are using Dreamweaver CC. You will be completing the Forms Tutorial from your textbook, Chapter 12 however, you will be skipping

More information

Destiny Library Manager

Destiny Library Manager Destiny Library Manager Setting Up One Search Your teachers and students can take advantage of your school s subscription databases all in one place through Destiny One Search. One Search saves staff and

More information

Dreamweaver Forms Outline

Dreamweaver Forms Outline Dreamweaver Forms Outline Discuss the different types of scripts used for forms o Form Mail Script The different tools o Insert Form o Insert Text Field o Insert Button o Discuss differences between checkboxes

More information

1.264 Lecture 12. HTML Introduction to FrontPage

1.264 Lecture 12. HTML Introduction to FrontPage 1.264 Lecture 12 HTML Introduction to FrontPage HTML Subset of Structured Generalized Markup Language (SGML), a document description language SGML is ISO standard Current version of HTML is version 4.01

More information

This document contains the steps which will help you to submit your business to listings. The listing includes both business and contact information.

This document contains the steps which will help you to submit your business to listings. The listing includes both business and contact information. This document contains the steps which will help you to submit your business to listings. The listing includes both business and contact information. You can also include details, such as search keywords,

More information

Lecture : 3. Practical : 2. Course Credit. Tutorial : 0. Total : 5. Course Learning Outcomes

Lecture : 3. Practical : 2. Course Credit. Tutorial : 0. Total : 5. Course Learning Outcomes Course Title Course Code WEB DESIGNING TECHNOLOGIES DCE311 Lecture : 3 Course Credit Practical : Tutorial : 0 Total : 5 Course Learning Outcomes At end of the course, students will be able to: Understand

More information

CHAPTER 6: CREATING A WEB FORM CREATED BY L. ASMA RIKLI (ADAPTED FROM HTML, CSS, AND DYNAMIC HTML BY CAREY)

CHAPTER 6: CREATING A WEB FORM CREATED BY L. ASMA RIKLI (ADAPTED FROM HTML, CSS, AND DYNAMIC HTML BY CAREY) CHAPTER 6: CREATING A WEB FORM INTERACTION BETWEEN A WEB FORM AND A WEB SERVER Without a form, a website is read-only. It only provides information. EXAMPLES OF FORMS USAGE Performing searches Posting

More information

CS 350 COMPUTER/HUMAN INTERACTION. Lecture 6

CS 350 COMPUTER/HUMAN INTERACTION. Lecture 6 CS 350 COMPUTER/HUMAN INTERACTION Lecture 6 Setting up PPP webpage Log into lab Linux client or into csserver directly Webspace (www_home) should be set up Change directory for CS 350 assignments cp r

More information

Card Magic. Module for Miva Merchant. Introduction. Table of Contents

Card Magic. Module for Miva Merchant. Introduction. Table of Contents Card Magic Module for Miva Merchant Copyright 2007, 2008 by Magic Metal Productions This document gives instructions on installing and using this module for Miva Merchant shopping-cart systems. If you

More information

DEPARTMENT OF PURCHASING AND CONTRACT COMPLIANCE

DEPARTMENT OF PURCHASING AND CONTRACT COMPLIANCE FULTON COUNTY DEPARTMENT OF PURCHASING AND CONTRACT COMPLIANCE VENDOR SELF SERVICE SYSTEM (VSS) Vendor Quick Registration Guide Vendor Quick Registration The Vendor Quick Registration Guide is a twelve

More information

9 BUILDING ONLINE FORMS AND VALIDATING INPUT

9 BUILDING ONLINE FORMS AND VALIDATING INPUT 9 BUILDING ONLINE FORMS AND VALIDATING INPUT THE ESSENTIAL GUIDE TO DREAMWEAVER CS4 WITH CSS, AJAX, AND PHP Online forms are the gateway to the server and lie at the very heart of working with PHP, the

More information

Creating Forms in SOCS

Creating Forms in SOCS Training Creating Forms in SOCS Use the Form option on the Advanced Tool Bar to create a form to post to your SOCS site. The form allows visitors to complete the information online. The information gathered

More information