How to create new account using servlets

Posted by Alvin on Stack Overflow See other posts from Stack Overflow or by Alvin
Published on 2010-05-18T21:00:35Z Indexed on 2010/05/18 21:20 UTC
Read the original article Hit count: 267

Filed under:
|
|

I want to know how can I create new account using servlets in post method?

I'm currently following MVC design pattern, and I want to know if I pass the required data to register new account from JSP page, then how can I get that data in post method? As request.getParameter() method returning me null. How can I know that post method is calling to create new account?

How can I pass all the relevant user information from servlets to model class for registering data to the database table?

© Stack Overflow or respective owner

Related posts about java

Related posts about servlets