• 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

calling a jsp with href

 
Ranch Hand
Posts: 81
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Friends,

I am calling B.jsp from A.jsp using href ...will it get request and resposne objects of A.jsp.

I want share some fields between these two jsp..

Thanks in advance.

phani
[ August 20, 2008: Message edited by: Bear Bibeault ]
 
Ranch Hand
Posts: 5575
Eclipse IDE Windows XP Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by sammeta kumar:
I am calling B.jsp from A.jsp using href ...will it get request and resposne objects of A.jsp.

I want share some fields between these two jsp..



No.it will not get request and resposne objects of A.jsp.if you want share some data between them then pass parameter to href(queryString) or place the data into the session

note: if you want request object in B.jsp,then you need to forward request object to B.jsp

Hope This Helps
 
sammeta Phanikumar
Ranch Hand
Posts: 81
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you..
 
reply
    Bookmark Topic Watch Topic
  • New Topic