Re: passing ogjects from jsp to jsp

2001-06-21 Thread Kevin Duffey
erence > [mailto:[EMAIL PROTECTED]]On Behalf Of Atilio Ranzuglia > Sent: Thursday, June 21, 2001 5:36 AM > To: [EMAIL PROTECTED] > Subject: Re: passing ogjects from jsp to jsp > > > Kaab: > For what you are trying to do you should take a look > at the 'scope' attribute

Re: passing ogjects from jsp to jsp

2001-06-21 Thread kaab kaoutar
a Server Pages specification and >reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: passing ogjects from jsp to jsp >Date: Thu, 21 Jun 2001 10:33:49 -0700 > >So let me see if I got this right. You have Bean 1 on page 1. You get some >values from a form on th

Re: passing ogjects from jsp to jsp

2001-06-21 Thread Duffey, Kevin
lly a ResultSet is a Vector. Hope this helps..if not, feel free to ask more. -Original Message- From: kaab kaoutar [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 21, 2001 8:02 AM To: [EMAIL PROTECTED] Subject: Re: passing ogjects from jsp to jsp Thanks a lot! But wht i'm doing so f

Re: passing ogjects from jsp to jsp

2001-06-21 Thread kaab kaoutar
ce <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: passing ogjects from jsp to jsp >Date: Thu, 21 Jun 2001 07:50:36 -0700 > >Very simple. Store the result set in a bean with session scope. Then, all >pages accessed by the same one user during the same one session

Re: passing ogjects from jsp to jsp

2001-06-21 Thread Kevin Duffey
n and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of kaab kaoutar > Sent: Thursday, June 21, 2001 3:48 AM > To: [EMAIL PROTECTED] > Subject: passing ogjects from jsp to jsp > > > Hi! > I have a jsp files that generates a linked list by the bean that are > instantiated

Re: passing ogjects from jsp to jsp

2001-06-21 Thread Atilio Ranzuglia
Kaab: For what you are trying to do you should take a look at the 'scope' attribute on the 'jsp:useBean' tag. There are two that could be good to you: request and session. If the page you are calling is the same in which you currently are 'request' will be good to you. If it is another page you s

passing ogjects from jsp to jsp

2001-06-21 Thread kaab kaoutar
Hi! I have a jsp files that generates a linked list by the bean that are instantiated there! iwant the next page to get that linked list and display some of the liked list then call itself with an argument so as to display the rest and so on ! The main problem is how the second page can use the re

Re: passing parameters from jsp to jsp

2001-06-20 Thread Rodrigo Lopes
Do this: > > thanks, > Eric > ___ > eSafe Protect Gateway has scanned this mail for viruses, vandals and > suspicious attachments. > > === > To unsubscribe: mailto [E

Re: passing parameters from jsp to jsp

2001-06-20 Thread King Maurice
une 20, 2001 2:54 PM Subject: passing parameters from jsp to jsp > Hi again, > Thanks for the help from before...now i got another problem. > > How would i go about passing a specific parameter to another jsp page > depending on the link that i click. > > so it

passing parameters from jsp to jsp

2001-06-20 Thread Eric Cho
Hi again, Thanks for the help from before...now i got another problem. How would i go about passing a specific parameter to another jsp page depending on the link that i click. so it would be like and i want to pass respectively. how is this done? or am i approaching it from a bad

Re: Passing objects from JSP to JSP

2000-05-02 Thread [Vinod Govindan]
You could also do it by using setParameter() instead of setAttribute! I think! aNYWAY GIVE IT A SHOT! Naveen Malik cc: Sent by: A Subject: Re: Passing objects from JSP to JSP

Re: Passing objects from JSP to JSP

2000-05-02 Thread Kevin Duffey
EMAIL PROTECTED] Subject: Passing objects from JSP to JSP Hi all, I'm interested in being able to pass objects from jsp to jsp using the setAttribute() and getAttribute() methods without the use of a controller servlet or bean but have been unsuccessful. Here is some code that I

Re: Passing objects from JSP to JSP

2000-05-02 Thread Craig R. McClanahan
Nathan Jantz wrote: > Hi all, > I'm interested in being able to pass objects from jsp to jsp using the > setAttribute() and getAttribute() methods without the use of a controller > servlet or bean but have been unsuccessful. Here is some code that I have > tried: > Yo

Re: Passing objects from JSP to JSP

2000-05-02 Thread Naveen Malik
Sent: Tuesday, May 02, 2000 1:59 PM Subject: Passing objects from JSP to JSP > Hi all, > I'm interested in being able to pass objects from jsp to jsp using the > setAttribute() and getAttribute() methods without the use of a controller > servlet or bean but have been unsucces

Passing objects from JSP to JSP

2000-05-02 Thread Nathan Jantz
Hi all, I'm interested in being able to pass objects from jsp to jsp using the setAttribute() and getAttribute() methods without the use of a controller servlet or bean but have been unsuccessful. Here is some code that I have tried: callingPage.jsp: <% String[] arrayOfString = new S

Re: jsp to jsp

2000-04-19 Thread Krishna, Suresh
hi, It might be problem with HTML field name and bean's name( her userid ) synchronization . suresh > -Original Message- > From: Visakh Menon [SMTP:[EMAIL PROTECTED]] > Sent: Wednesday, April 19, 2000 11:56 PM > To: [EMAIL PROTECTED] > Subject: Re: jsp to jsp &

Re: jsp to jsp

2000-04-19 Thread Visakh Menon
I think you don't need to give the userid with the URL. you can pass it as a parameter when you call aaa.jsp. its the request to the aaa.jsp that's going to be forwarded to bbb.jsp. ie, in aaa.jsp : and you invoke aaa.jsp as http://servername/jsp/aaa.jsp?userid=100099 As per JSP Specs, you can

Re: jsp to jsp

2000-04-19 Thread Mike McKechnie
Try... <% String userid = "100099";%> === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://w

jsp to jsp

2000-04-19 Thread Hui Du
Hi, there: I have problems when I forward userid from aaa.jsp to bbb.jsp. aaa.jsp <% String userid = "100099";%> bbb.jsp <% out.println("userid in bbb.jsp:"+userid); %> Please help adam __ Get Your Private, Free Email at http://www.

Re: Passing Data from JSP to JSP

1999-06-16 Thread Anonymous
ie Fishler <[EMAIL PROTECTED]>To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>Date: 16 June 1999 13:03Subject: Re: Passing Data from JSP to JSP Umesh,   Here is what you need to do.   In the originating JSP:   <% String[] arrayOfString = new St

Re: Passing Data from JSP to JSP

1999-06-16 Thread Anonymous
16, 1999 11:53 AMTo: [EMAIL PROTECTED]Subject: Passing Data from JSP to JSP How do I pass Data from JSP to JSP   for e.g , I have to pass an array of strings to another JSP from current JSP   I would appreciate if someone could help with dummy code !!!   Umesh.

Passing Data from JSP to JSP

1999-06-16 Thread Anonymous
How do I pass Data from JSP to JSP   for e.g , I have to pass an array of strings to another JSP from current JSP   I would appreciate if someone could help with dummy code !!!   Umesh.