i made a session in one jsp page,but it can't access in other jsp page
first.rs=first.st.executeQuery("select emp_fname,emp_lname from employee where user_name='"+t1+"'");
while(first.rs.next())
{
ss1=first.rs.getString(1)+" "+first.rs.getString(2);
h++;
}
session.setAttribute("name",ss1);
//this session value get in this page but not other