User Registration
First Name
Last Name
E-Mail

What languages do you program in?
Java   C++      C
Perl   COBOL VB
How often can we notify you regarding your interests?
Weekly   Monthly   Quarterly
<%-- Create the bean only when the form is posted --%> <% if (request.getMethod().equals("POST")) { %> <%-- provide a setProperty tag and ensure that the setter methods are invoked via introspection --%>


You submitted:

First Name:
<%-- invoke the getter method to display the firstName using the getProperty tag --%>
Last Name:
<%-- invoke the getter method to display the lastName using the getProperty tag --%>
Email:
<%-- invoke the getter method to display the email address using the getProperty tag --%> Languages:
<% String[] lang = formHandler.getLanguages(); if (!lang[0].equals("1")) { out.println("

"); } else out.println("Nothing was selected
"); %> Notification:
<%-- invoke the getter method to display the ntotification status using the getProperty tag --%>
<% } %>