Last updated: 9/29/03
Link back to course Welcome
Agenda for Class
4 (eCommerce only)
September 23, 2003
| What is needed | What we will use |
| 1. Web Server, or access to one. | IS Web Server (www2.is.wayne.edu) |
| 2. Ability to create static web pages (HTML) | Combination of Netscape Composer and Notepad |
| 3. Programming capability. Some people regard producing static web HTML pages to be programming, but here there is something beyond that. To process user input from text boxes etc., you need an active system to store and act on the user's input, and to respond to that input. | Active Server Pages with VBScript |
| 4. Email management -- ability to send email, perhaps automatically, and receive it. | For sending automatic email, ASP. |
| 5. Access Restriction. If you are selling content, you need some way to restrict access by people who haven't paid yet. | May not be needed. Several possibilities here: "blind URLs" with no links to them, you email your paid-up customers the URL. Also, access can be allowed only with a User Name and Password. |
| 6. Access Logs. All web servers keep logs of hits. This is vital marketing information showing what customers and potential customers are interested in, where they are coming from, how many there are and whether or not they can use your web site. These days, you have about thirty seconds to provide a new user with what they are looking for. Then it's click and goodbye! | You will have access to the server logs for your web site. You will be using Microsoft Access database program to analyze them. Not covered yet. |
| 7. Secure transactions. You must be able to demonstrate that you take customers' security seriously. The attitude that, "I don't care if they are really secure just as long as they think they are" is a marketing disaster waiting to happen. In practice, today this means encrypted (encoded) transmissions for personal information such as addresses, telephone numbers and credit card numbers. | I am currently trying to get this set up on the IS web server. There is a chance it may not happen this semester. If it does happen, its use will just be to provide links using shttp -- Secure HyperText Transport Protocol -- instead of http. Not covered yet. |
| 8. Credit Card Validation. Don't ship until you know the card is good! How do you get paid if the customer purchases by credit card? | We will not be doing this. There will be a list of options about how to do it. |
| 9. Ability to upload files to the web server | FTP
|
| 10. Ability to create web graphics (GIF or JPEG/JPG file formats). Strictly speaking, this is not required, but cool graphics are a part of the web culture, and also of selling goods. |
URLs, User Names, Passwords and so forth will be the same as above. You will not need to run Windows Explorer alongside these. NOTE: For WS_FTP, be careful whether you click on the client-to-server (right-pointing) arrow or the server-to-client (left-pointing) arrow.
| Form Page | ASP Page |
| Filename in Form tag (the name in the Action= attribute) | ASP file name |
| Name of field in each form field tag | Name in quotes in Request("name") |
| Later... | |
| Name of field in form field tag | Name of field in database |