Trouble with settin beans in session
i have in session an object: <jsp:useBean id = "currentBean" scope="session" type="miru.orderInfo.OrderInfoBean"/> and on that page a button: <input type="button" value="Edit" onclick="openWindow('../localhost_3A8080/miru/scrisoareTransport.jsp','ScrisoareDeTransport',1150,600)">
whichopens a new window:
the jsp for this new window looks like this:
<%@ include file="taglibs.jsp" %>
<%@ page import="database.navigator.Navigator"%>
<jsp:useBean id = "currentBean" scope="session" type="miru.orderInfo.OrderInfoBean"/>
<html>
.............................
</html>
when i run the application in IE i get this error: bean currentBean not found within scope
could someone tell me why?

