hi!

  i have got a real problem with my applet not
recognizing the parameters my jsp page has passed to
the applet.
code for the jsp:

    <%
         String pname[]={names for the parameters};
         String rec[]={values from the database };
     %>
   <jsp:plugin type="applet" ......>
    <jsp:params>
   <% for(int i=0;i<10;i++)

     {
    %>
     <param name='<%= pname[i]%>' value='<%=rec[i]%>'>
     <%
           }
        %>
    </jsp:params>
     </jsp:plugin>

my jsp code is compiling well.
but when i use getParameter() inside my JApplet
it is returning a null value.

please help
thanks in advance




















--- "Sachin S. Khanna" <[EMAIL PROTECTED]> wrote:
> U can either use jsp:forward tag or use the
> response.sendRedirect("the url
> of the page you want to redirect to") method.
> Have a nice day.
> With regards,
> Sachin S. Khanna.
> www.emailanorder.com
> ----- Original Message -----
> From: Xiaofeng Wang <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wednesday, October 11, 2000 11:10 AM
> Subject: JSP redirect
>
>
> > hi, all:
> >
> > I want to redirect from a jsp page to a new url.
> >
> > Who can tell me how to do it?
> >
> > I wish you can tell me as many methods as you
> know.
> >
> > Thanks.
> >
> >
>
===========================================================================
> > 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://www.esperanto.org.nz/jsp/jspfaq.html
> >
> http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
> >
>
http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
> >
>
>
===========================================================================
> 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://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>
http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets


__________________________________________________
Do You Yahoo!?
Get Yahoo! Mail - Free email you can access from anywhere!
http://mail.yahoo.com/

===========================================================================
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://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to