• 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

passing parameters

 
Ranch Hand
Posts: 158
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
passing parameters from one jsp to another jsp page
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
sitiram, you will only get out of these forums as much as you put into it yourself. Posting incomplete requests for vague information is not going to get you very far. If you have a question, please take the the time necessary to clearly indicate what you are asking. Otherwise, why should anyone use their time to answer you?

The brief answer to your vague question is: the same way as any other page.
[ August 06, 2005: Message edited by: Bear Bibeault ]
 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, is the situation:

JSP 1 contains a form that you want the parameters to go to JSP 2? By using a form.

JSP 1 received parameters from some miscellaneous page and you want the parameters sent to JSP 1 to also go to JSP 2? The answer is to include the JSP 2 in JSP 1 and it will have access to the same request/response pair.
 
reply
    Bookmark Topic Watch Topic
  • New Topic