Wrox Home  
Search P2P Archive for: Go

  Return to Index  

servlets thread: How to?


Message #1 by "ski" <alanashe@h...> on Tue, 5 Sep 2000 17:16:00 +0100
I am having difficulty allowing a user to accept multiple choices from and
html form and then sending it to a database:

Enumeration values = req.getParameterNames();
       while (values.hasMoreElements()) {
        String name = (String)values.nextElement();
        String value = req.getParameterValues (name) [0];
        if (name.compareTo("submit") !=0) {

HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1

  Return to Index