• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

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.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic