Not sure what you're asking in the first part...but...
> does File2.jsp inherit
> objects from File1.jsp?
No, not exactly. If you want to share some objects, you should have your
jsp code put objects into the request scope (it's kind of like the "session"
or "application" scope setAttribute() and getAttribute() -- except that the
scope dies at the end of the current request).
request.setAttribute("Foo", bar);
then to retrieve:
request.getAttribute("Foo");
or to retrieve an alternate way:
<jsp:useBean id="Foo" scope="request" class="java.util.ArrayList" />
cheers
fillup
On 5/30/02 10:06 PM, "Nicholas Orr" <[EMAIL PROTECTED]> wrote:
> I have the follwing
> -- File1.jsp --
> <%
> code
> %>
> <html>
> <body>
> <jsp:inlcude page="File2.jsp" flush="true />
> </body>
> </html>
>
> How do I get the error info from File2.jsp? And does File2.jsp inherit
> objects from File1.jsp?
>
>
> **********************************************************************
> The information contained in this e-mail is confidential and is
> intended only for the use of the addressee(s).
> If you receive this e-mail in error, any use, distribution or
> copying of this e-mail is not permitted. You are requested to
> forward unwanted e-mail and address any problems to the
> MIM Holdings Limited Support Centre.
>
> For general enquires: ++61 7 3833 8000
> Support Centre e-mail: [EMAIL PROTECTED]
> Support Centre phone: Australia 1800500646
> International ++61 7 38338042
> **********************************************************************
>
>
> --
> To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>