if i take
session.putValue("text1",text)
out from code, it is not giving any error. if i include that line in jsp,
'page cannot be displayed' is coming.
Actually, what i need is
assume 3 jsp files are there.
in first jsp, i will select one value from combo box.
i need that value in jsp file which is not directly related to first jsp. So, i want to store that value in session and i want to use it.
How to solve this problem?
whether the is session created before you access this jsp or its created in this page?
If this is the jsp page accessed in ur application without session being created earlier and the "session" attribute in page directive is "false" then u might get the exception. Do u know what is the exact exception thrown?