I need more then one form in a jsp page. Is it possible? Is this a good practice? And how can i do? Give me example.
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, it’s possible as long as you don’t nest them. This is not specifically a JSP restriction, but a HTML restriction (you know, all JSP does is outputting HTML/CSS/JS and all the webbrowser retrieves and understands is HTML/CSS/JS). It’s certainly a good practice if those forms are not related to each other. E.g. a login form, a search form and a contact form in the same page.