On Thu, 13 Apr 2000, Pablo Rito (ERA) wrote:

> hi all,
> I have a problem with Request.getParameter() , i wrote
> <%! String namn="";
> String temp=Request.getParameter("anvnamn");
> %>
> I have also included the package like this
> <%@ page import = "javax.servlet.ServletRequest" contentType="text/vnd.wap.wml" %
>
> But i still don't manage it work.
>
> -----Original Message-----
> From: Adolf Liepelt [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, April 13, 2000 2:55 PM
> To: [EMAIL PROTECTED]
> Subject: Use of implicit variables in custom tags?
>
>
> Hi all,
>
> I want to use the reference of a bean declared by <jsp:useBean id="bean"
> .../> in my custom tag. Does anybody know how to get this reference with
> the correct type?
>
>
> --
> Adolf Liepelt
Hi Adolf, in order to use request.getParameter("par") you do not have to
import any library.
The following sample have to run:
u_adressnr=request.getParameter("u_adressnr");
<%=u_adressnr%>
Be sure that the method post is correct in your form.
      Omar Vera.

>
> ===========================================================================
> 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
>

===========================================================================
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