Hi  All
I have Read all the comments sent by u ppl.
I will suggest to use the hidden paramer in included jsp.
 So try to use hidden parameters in the included jsp.
i have used the same approch .Let me know if you require source code



 

On Fri, 21 Dec 2001 Arijit Chakrabarti wrote :
> Brian,
> This method is incorrect way of calling because she is 
> putting the snippet
> 
> <jsp:include page="MyForm.jsp" flush="true">
>            <jsp:param name="index" value="<%=i%>" />
> </jsp:include>
> inside the for loop.
> So for every iteration it will include the page.
> Do you think this is the correct way of calling.
> What she intend to do is pass the bunch of values of 
> the possible iterations
> as the param to the next jsp.
> Rgds
> Arijit
> 
> 
> 
> 
> 
> 
> -----Original Message-----
> From: A mailing list about Java Server Pages 
> specification and reference
> [mailto:[EMAIL PROTECTED]]On Behalf Of Brian 
> Bohnet
> Sent: Friday, December 21, 2001 11:45 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Dynamic JSP Include - Possible?
> 
> 
> Arijit,
> 
> Could you briefly explain why this way is incorrect? 
> Are you referring
> to placing these values in session and extracting them 
> at the second jsp
> thru session.getAttribute()?
> 
> Thanks,
> Brian
> Arijit Chakrabarti wrote:
> >
> > Hi,
> > It is possible to have a dynamic JSP parameter.
> > But this way of passing parameters is incorrect.
> >  value="<%=i%>"
> > try to change approach.It will work.
> >
> > Rgds,
> > Arijit
> >
> > -----Original Message-----
> > From: A mailing list about Java Server Pages 
> specification and reference
> > [mailto:[EMAIL PROTECTED]]On Behalf Of 
> [EMAIL PROTECTED]
> > Sent: Friday, December 21, 2001 11:12 AM
> > To: [EMAIL PROTECTED]
> > Subject: Dynamic JSP Include - Possible?
> >
> > Hello everyone!
> >
> > I am attempting to create a jsp page (jsp1) which 
> will include a result of
> > another compiled jsp (jsp2) with dynamic parameters 
> to somewhat of the
> > following effect:
> >
> > <%
> > int numForms = 5; //this is a variable that comes 
> from session
> >
> > for (int i=0; i<numForms; i++)
> > {
> > %>
> >      <jsp:include page="MyForm.jsp" flush="true">
> >           <jsp:param name="index" value="<%=i%>" />
> >      </jsp:include>
> > <%
> > }
> > %>
> >
> > My question is: is it possible to have a dynamic JSP 
> parameter.
> > I welcome any suggestions about how this can/why it 
> cannot be done.
> > Thanks in advance for your help.
> >
> > Elena Tsifrina
> > SYSCOM, Inc.
> > www.syscom.com
> > 410-539-3737 x1322
> >
> >
> ========================================================-
> ===================
> > To unsubscribe: mailto [EMAIL PROTECTED] with 
> body: "signoff
> > JSP-INTEREST".
> > For digest: mailto [EMAIL PROTECTED] with body: 
> "set JSP-INTEREST
> > DIGEST".
> > Some relevant FAQs on JSP/Servlets can be found at:
> >
> >  http://archives.java.sun.com/jsp-interest.html
> >  http://java.sun.com/products/jsp/faq.html
> >  http://www.esperanto.org.nz/jsp/jspfaq.jsp
> >  http://www.jguru.com/faq/index.jsp
> >  http://www.jspinsider.com
> >
> >
> ========================================================-
> ===================
> > To unsubscribe: mailto [EMAIL PROTECTED] with 
> body: "signoff
> JSP-INTEREST".
> > For digest: mailto [EMAIL PROTECTED] with body: 
> "set JSP-INTEREST
> DIGEST".
> > Some relevant FAQs on JSP/Servlets can be found at:
> >
> >  http://archives.java.sun.com/jsp-interest.html
> >  http://java.sun.com/products/jsp/faq.html
> >  http://www.esperanto.org.nz/jsp/jspfaq.jsp
> >  http://www.jguru.com/faq/index.jsp
> >  http://www.jspinsider.com
> 
> ========================================================-
> ===================
> To unsubscribe: mailto [EMAIL PROTECTED] with body: 
> "signoff
> JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: 
> "set JSP-INTEREST
> DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
> 
>  http://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.com
> 
> ========================================================-
> ===================
> To unsubscribe: mailto [EMAIL PROTECTED] with body: 
> "signoff JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: 
> "set JSP-INTEREST DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
> 
>  http://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.com
 


Thanks 
Pranav Shah
Software Engineer
http://www.pranav.itgo.com

==========================================================================To 
unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

Reply via email to