Here are the topics for the test
HTML codes for a basic web page
Information on Cascading Style Sheets
UNIX
TOMCAT
-
URL for accessing a servlet
Chapter 1
Chapter 3
-
3.1 Basic Servlet Structure
-
3.2 A Servlet That Generates Plain Text
-
3.3 A Servlet That Generates HTML
-
3.4 Servlet Packaging
-
3.6 The Servlet Life Cycle
-
Examples
-
Listing 3.1 ServletTemplate.java
-
Listing 3.2 HelloWorld.java
-
Listing 3.3 HelloServlet.java
-
Listing 3.4 HelloServlet2.java
-
Listing 3.7 LotteryNumbers.java
Chapter 4
-
4.1 The Role of Form Data
-
4.2 Reading Form Data from Servlets
-
4.3 Example: Reading Three Parameters
-
4.4 Example: Reading All Parameters
-
Examples
-
Listing 4.1 ThreeParams.java
-
Listing 4.2 ThreeParamsForm.html
-
Listing 4.3 ShowParameters.java
-
Listing 4.4 ShowParametersPostForm.html
Chapter 5
-
5.1 Reading Request Headers
-
5.2 Making a Table of All Request Headers
-
5.3 Understanding Request Headers
-
Content-Length
-
Host
-
If-Modified-Since
-
Referer
-
User-Agent
-
5.5 Differentiating Among Different Browser Types
-
5.6 Changing the Page According to How the User Got There
-
5.7 Accessing the Standart CGI Variables
-
Examples
-
Listing 5.1 ShowRequestHeaders.java
-
Listing 5.7 ShowCGIVariables.java
Chapter 19
-
19.1 How HTML Forms Transmit Data
-
19.2 The FORM Element
-
19.3 Text Controls
-
19.4 Push Buttons
-
Submit Buttons
-
Reset Buttons
-
19.5 Check Boxes and Radio Buttons
-
19.6 Combo Boxes and List Boxes
-
19.9 Hidden Fields
-
Examples