>   I can easy get the parameter from the form using GET method in jsp,
>   but I can't get anything from POST method by using
> request.getParameter().
[snip]

Make sure you override the doPost method in your servlet and have it
call doGet, e.g.,

public void doPost( HttpServletRequest req, HttpServletResponse res )
   throws ServletException, IOException {

        doGet(req, res);
}

|********************************|
| Armen Ezekielian <[EMAIL PROTECTED]> |
| Science & Collaborations Group |
| The Ohio Supercomputer Center  |
|       http://www.osc.edu       |
|********************************|

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to