Hi,

As the training I`making test application in JSP including small form.
The form in available on form.html and looks as follow:

<form action="result.jsp" method="get">
    <p>First name <input type="text" name="firstName" /></p>
    <p>Surname    <input type="text" name="surname" /></p>
    Male<input type="radio" name="sex" value="male" />
    Female<input type="radio" name="sex" value="female" /><br>
    Preferable country to live
    <select name="countryType">
      <option value="poland">Poland</option>
      <option value="norway" selected>Norway</option>
      <option value="hungary">Hungary</option>
      <option value="vietnam">Vietnam</option>
      <option value="uk">UK</option>
      <option value="france">France</option>
    </select>
    <p><input type="submit" /></p>
  </form>

On JSP result.jsp I want to create ArrayList where the data from the 
form will be stored.
I don't know how to do it correctly.
Please help me.

BR
Rafal

----------------------------------------------------
Podniebny prezent świąteczny
Niepowtarzalny, dla każdego
Ekspresowa dostawa
Sprawdź: http://klik.wp.pl/?adr=www.skacz.pl&sid=933


-- 
You received this message because you are subscribed to the Google
Groups "Java EE (J2EE) Programming with Passion!" group.
To post to this group, send email to
java-ee-j2ee-programming-with-passion@googlegroups.com
To unsubscribe from this group, send email to
java-ee-j2ee-programming-with-passion+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/java-ee-j2ee-programming-with-passion?hl=en?hl=en

Reply via email to