<jsp:useBean id="formHandler" class="foo.FormBean" scope="request"/> <html> <body> <center> <table cellpadding=4 cellspacing=2 border=0> <th bgcolor="#CCCCFF" colspan=2> <font size=5>USER REGISTRATION SUCCESSFUL!</font> </th> <font size=4> <tr bgcolor="#c8d8f8"> <td valign=top> <b>E-Mail</b> <br> <jsp:getProperty name="formHandler" property="email"/> <br></td> </tr> <tr bgcolor="#c8d8f8"> <td valign=top colspan=2> <b>User Name</b> <br> <jsp:getProperty name="formHandler" property="userName"/> </td> </tr> <tr bgcolor="#c8d8f8"> <td colspan=2 valign=top> <b>Would you like to receive e-mail notifications on our special sales?</b> <br> <jsp:getProperty name="formHandler" property="notify"/> </td> </tr> </font> </table> </center> </body> </html>