RE: Passing a request parameter within Struts framework

2002-10-07 Thread Tuan H. Le
-Original Message- From: Luca Zago [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 6:55 AM To: Struts Users Mailing List Subject: Re: Passing a request parameter within Struts framework Hi, your problem is clear, and it has very few solutions :) The problem is that you use

RE: Passing a request parameter within Struts framework

2002-10-07 Thread Thomas Eichberger
TopNav" ) too, but it still returned a >null value. > >Thanks, >Tuan > >-Original Message- >From: Thomas Eichberger [mailto:[EMAIL PROTECTED]] >Sent: Monday, October 07, 2002 6:28 AM >To: Struts Users Mailing List >Cc: Struts Users Mailing List (E-mail) >

Re: Passing a request parameter within Struts framework

2002-10-07 Thread Luca Zago
Hi, your problem is clear, and it has very few solutions :) The problem is that you use frames. Every Frame in a different request, then the request from your form..end at the page containing the frameset, and your request with your parameters set in your form ends here. All the pages inside the

RE: Passing a request parameter within Struts framework

2002-10-07 Thread Tuan H. Le
st (E-mail) Subject: Re: Passing a request parameter within Struts framework request.getAttribute( "selTopNav" ) not request.getParameter( "selTopNav" ) !!! At 05:00 07.10.2002 -0700, Tuan H. Le wrote: >Hi, > >How do I pass a request attribute to another form? In my cas

RE: Passing a request parameter within Struts framework

2002-10-07 Thread Tuan H. Le
ns a null value instead of "1". I must have missed some thing here. Thanks, Tuan -Original Message- From: Tuan H. Le Sent: Monday, October 07, 2002 6:02 AM To: Struts Users Mailing List Subject: RE: Passing a request parameter within Struts framework Andrew, Thanks again f

Re: Passing a request parameter within Struts framework

2002-10-07 Thread Thomas Eichberger
request.getAttribute( "selTopNav" ) not request.getParameter( "selTopNav" ) !!! At 05:00 07.10.2002 -0700, Tuan H. Le wrote: >Hi, > >How do I pass a request attribute to another form? In my case, after a >successful login, it would forward the user to >the main form (MainMeu.jsp which has a f

RE: Passing a request parameter within Struts framework

2002-10-07 Thread Divakar Satyanarayan
st > Subject: RE: Passing a request parameter within Struts framework > > Had another look at your question and realised it is attributes rather > than > parameters (Im always getting these mixed up!) that you stated in your > original question! (hehe guess my response was too qui

RE: Passing a request parameter within Struts framework

2002-10-07 Thread Tuan H. Le
Andrew, Thanks again for your help! I'm going to try your suggestion soon. Tuan -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 5:41 AM To: Struts Users Mailing List Subject: RE: Passing a request parameter within Struts framework

RE: Passing a request parameter within Struts framework

2002-10-07 Thread Andrew Hill
tring path = addParameterToURL(forward.getPath(),"selTopNav","1"); ActionForward newFwd = new ActionForward(path,fwd.getRedirect() ); return newFwd; -Original Message- From: Tuan H. Le [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 20:19 To: Struts Users Mai

RE: Passing a request parameter within Struts framework

2002-10-07 Thread Tuan H. Le
w one. > -Original Message- > From: Tuan H. Le [mailto:[EMAIL PROTECTED]] > Sent: Monday, October 07, 2002 20:01 > To: Struts Users Mailing List (E-mail) > Subject: Passing a request parameter within Struts framework > > Hi, > > How do I pass a request

RE: Passing a request parameter within Struts framework

2002-10-07 Thread Andrew Hill
; From: Tuan H. Le [mailto:[EMAIL PROTECTED]] > Sent: Monday, October 07, 2002 20:01 > To: Struts Users Mailing List (E-mail) > Subject: Passing a request parameter within Struts framework > > Hi, > > How do I pass a request attribute to another form? In my cas

Passing a request parameter within Struts framework

2002-10-07 Thread Tuan H. Le
Hi, How do I pass a request attribute to another form? In my case, after a successful login, it would forward the user to the main form (MainMeu.jsp which has a frameset). In the main form, it has several tabs. By default, it displays the first tab. Currently, in the perform() method of Login