Hi,
I'm using an HTML page in which i've 2 forms which have the same action..
Ex:
<form name="f1" action="store.j sp" method="post">
<!-- Do something -->
</form>
<form name="f2" action="store.j sp" method="post">
<!-- Do something -->
</form>
Now in the JSP page how can i retreive the parameters of form f2 using request.getPara meter('Paramete r name');
Is there any method like request.getPara meter(form name,parameter name);
(or)
form_name.reque st.getParameter (Parameter_name );
Help me out please..
I'm using an HTML page in which i've 2 forms which have the same action..
Ex:
<form name="f1" action="store.j sp" method="post">
<!-- Do something -->
</form>
<form name="f2" action="store.j sp" method="post">
<!-- Do something -->
</form>
Now in the JSP page how can i retreive the parameters of form f2 using request.getPara meter('Paramete r name');
Is there any method like request.getPara meter(form name,parameter name);
(or)
form_name.reque st.getParameter (Parameter_name );
Help me out please..
Comment