Form with two buttons that submit to different pages

K

Kevin Audleman

Hi, is it possible to create a form that has two submit buttons, and
each one submits to a different page?

Thanks,
Kevin
 
T

Thomas 'PointedEars' Lahn

Kevin said:
Hi, is it possible to create a form that has two submit buttons, and
each one submits to a different page?

Yes, but unwise.


PointedEars
 
D

dhtmlkitchen

Yes, but unwise.
A better approach is to check the button that was clicked on the
server. Then forward your request using internal forwarding
mechanism.

In Java, the way to do it is to use a RequestDispatcher. This can be
done in Spring and struts by configuring an XML file.

String method = request.getParameter("method");
if( method.equals("button2") )
{
// Forward to the other controller.
}

I'm sure other languages/server side frameworks have similar
functionality

Garrett
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top