Julio Castillo wrote:

> What is the proper way of passing the request object to a bean instance "used"
> in a JSP page?
>
> The 1.0 documentation has no reference to it (other than a postponement).
>

This is pretty easy with scriptlets:

<jsp:useBean id="myBean" ... />

<% myBean.processRequest(request) %>

This presupposes you have a method defined in your bean:

    public void processRequest(HttpServletRequest req) {
        ...
    }

Craig McClanahan

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to