The message is confusing because PageBeans (plural) is
a Collection of PageBean (singular). Upon successful
execution of a servlet, PageBeans (plural) is passed
in a request scope to help creating a drop down menu
in 'content.jsp'. And the 'content.jsp' with the
drop-down menu (see the code below) is displayed
successfully. PageBean is a regular JavaBean, which
currently has only one property called 'name' (I keep
it simple for testing purpose).
This problem occurred when I click on the Submit button of this form in the 'content.jsp'. Althouth PageBeans (plural) is used to create a drop-down menu in this form, PageBeans (plural) is irrelevant in the subsequest steps. Why do I get '[ServletException in:/frame/content/content.jsp] Cannot find bean PageBeans in scope request' by clicking on the Submit button of the form?
Is it possible there is a form validation error occurring on submit? That would return control to content.jsp and cause the error you are seeing, I think.
-- Jeff Beal
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]