Hi,
I'm having a page like below :
<html><head><body>
<FONT COLOR=RED SIZE=5>
<%@page import ="com.ui.CTransactionManager"%>
<%@page import ="com.ui.CUser"%>
<%
String UserId = request.getParameter("UserId");
CTransactionManager objmanager = new CTransactionManager();
CUser user = objmanager.getUser(UserId);
String m_staff_id = user.getStaffId();
out.print( "Staff Id : " +m_staff_id );
%>
</font></body></head></html>
here i want to pass the m_staff_id field to next page which i'm redirecting from here. Can any one advice how to achive this.