• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

multiple forms in JSP

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
first.jsp
<form method="POST" name="form1" action="servlet1">
<input type =�submit�>
</form>


Second.jsp
//should display the selected list items of the first.jsp


I have to add another new button �send� in the �first.jsp� page and I have to call second.jsp when I click �send� after selecting values from the list box and these selected values should be passed to the second.jsp
Existing Submit button of first.jsp calls �servlet1� servlet.the existing submit button code shouldn�t be changed.New �send� button should call second.jsp page.the second.jsp page should be opened in a pop-window when �send� button clicked.
 
What I don't understand is how they changed the earth's orbit to fit the metric calendar. Tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic