<html>
<HEAD><TITLE>When the shoe fits, wear it</TITLE></HEAD>

<H1><FONT color="#FF00FF">
This response was generated by a JSP file that uses beans
</FONT></H1>
<!-- Get the person who sent the form from the userName parameter -->
<P>Hello <B><DISPLAY PROPERTY="request:params:userName">!</B>
 Welcome to our JSP form test results.
</B></P>

<!-- Display a bullet item for each kind of shoe selected -->

<P>Here is information about the kind of shoes you are interested in:
 
 <INCLUDEIF PROPERTY="request:params:Sandals" VALUE="on">
    <USEBEAN name="sandalS" type=com.shoes.beans.sandals lifespan=page>
    </USEBEAN>
    
    <H4>Sandals</H4>
    <UL>
    <li>The available colors for these shoes include  <DISPLAY property=sandalS:colors>.
    <li>These shoes feature  <DISPLAY property=sandalS:features>.
    </UL>
 </INCLUDEIF>
 
 <INCLUDEIF PROPERTY="request:params:HikingBoots" VALUE="on">
    <USEBEAN name="hikingH" type=com.shoes.beans.hikingBoots lifespan=page>
    </USEBEAN>
    
    <H4>Hiking Boots</H4>
    <UL>
    <li>	The available colors for these shoes include  <DISPLAY property=hikingH:colors>.
    <li>	These shoes feature  <DISPLAY property=hikingH:features>.
    </UL>
 </INCLUDEIF>
 
 <INCLUDEIF PROPERTY="request:params:WalkingShoes" VALUE="on">
    <USEBEAN name="walkingW" type=com.shoes.beans.walkingShoes lifespan=page>
    </USEBEAN>
    
    <H4>Walking Shoes</H4>
    <UL>
    <li>	The available colors for these shoes include <DISPLAY property=walkingW:colors>.
    <li>	These shoes feature  <DISPLAY property=walkingW:features>.
    </UL>
 </INCLUDEIF>
 
 
 
 </INCLUDEIF>

 

</html>
