| Wayne State University College of Lifelong Learning Interdisciplinary Studies Program Fall, 2000 http://www.cll.wayne.edu/isp/drbowen/inetf00 |
Instructor: David R. Bowen 2311 A/AB Wayne State University Detroit, MI 48202 |
Daytime tel: (313) 577-1498 Evening tel: (248) 549-8518 FAX: (313) 577-8585 Email: d.r.bowen@wayne.edu |
Instructor's
home page (David R. Bowen) at http://www.cll.wayne.edu/isp/drbowen |
||
| eCommerce: Using the Web to Find and Service
Customers AGS 3360 Section 986 Call Number 92073 or ISP 5500 Section 982 Call Number 92136 |
Computers, the Internet, and Society AGS 3340 Section 981 Call Number 96761 or ISP 5990 Section 982 Call Number 99915 |
|
Last updated: 9/17/00
Link back to course Welcome
This section added after class on Sunday,
September 17:
To keep FrontPageEditor from changing your action
in the form tag:

Agenda for class 2
9/13/00
(eCommerce only)
So, make this a business opportunity - make it easy, and take your customer's security seriously and ease their concerns. Put your catalog online, allow online ordering, but maybe list an 800 number also
These components will make the system function. Seybold has eight Critical Factors for Success, once the system is functioning at the basic level of McComb's components.
| HTML Source | Browser View |
| <HTML> <HEAD> <TITLE> Test Web Page </TITLE> </HTML> <BODY BGCOLOR="#FFFFFF"> <H1>This is my test web page.</H1> </BODY> </HTML> |
Test Web Page (in title bar)This is my test web page. |
So -- you should use the methods that HTML gives you to control the keywords and summary. Both are done in the HTML head, using the "meta" tag. Also, the title that appears on the browser window and the page color are set in the head. In MS FrontPage98, all of these are set using the File / Page Properties... menu choice and the Page Properties dialog.

The document title (appears on the browser title bar) is set on the "General" tab. The background color is set on the "Background" tab. The keywords and description are set in the User Variables window of the "Custom" tag as shown above. FrontPage automatically sets GENERATOR to display its own name and version. Click on the Add button to open up new Name - Value pairs.

When the first form filed is inserted, Submit and Resent buttons are inserted also,
along with the <form> and </form> tags, indicated by dotted lines. Thereafter,
additional form widgets should be inserted inside the dotted lines; otherwise they start a
new, second form. The form widgets and the text that labels them can be positioned by any
valid HTML means, including <Enter>, <Shift><Enter>, tables and frames.
Each input widget has two additional properties, its Name and its Value. The Name is not
seen by the user, and identifies the input for you, the web designer, and for the CGI
program. The Value is what the user enters, although this can be set to a default value by
the web designer. Both are most easily specified by right-clicking on the element and
choosing the Form Field Properties menu item. The dialog supplied the default values for
Name and Value, but these can be replaced by clicking in the fields and typing. Click OK
when done.
Example: The user is supposed to type in her/his credit card number. Insert a One-line
Text Box for this purpose. Label it "Credit Card Number" so the user will know
what to type in. The Name could be "CardNumber" and the Value would initially be
blank, and take on whatever number the user types in. Suppose the user types in 123456789.
Then the Value of CardNumber would be 123456789, which the web browser would send to the
web server, and thereby to the CGI program. Most likely the CGI program would store this
in a database, along with the other purchase information.