A simple question. I tried to do the following in a JSP page called
first.jsp

<html>
<body>
<BEAN NAME="sql" INTROSPECT="yes" TYPE="Dbaccess" CREATE="yes"
SCOPE="session">
<PROPERTY content="I AM HERE">
</BEAN>
<form action="second.jsp" method="post">
<input type="submit">
</form>
</body>
</html>

Then I would think since the Bean is of scope session I would be able to use
it (making sure create="no")  in second.jsp that essentially contains the
following:

<BEAN NAME="sql" INTROSPECT="yes" TYPE="Dbaccess" CREATE="no">
</BEAN>
<%= sql.getcontent() %>

But that does not work. I have misinterpreted what "CREATE" does ?

Nicolas

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