Question is regarding "sessions" for JavaBeans.
When one calls a bean in a "session" does this line class="simplebean.lineBean"
create an instance of the bean???
If I want to use the same bean in another
JSP page would I use the same "beanid" and thus the same code line "<jsp:useBean class="simplebean.lineBean" id="bean0" scope="session" />" ?
If not what would I do?
eg: