CHECKPROFILE.jsp 271 Bytes
Newer Older
Thitichaipun Wutthisak committed
1 2 3 4 5 6 7 8 9 10
<%
com.csc.library.utilities.UProfile uprofile = null;
if(session != null ) {
	uprofile = (com.csc.library.utilities.UProfile)session.getAttribute("userprofile");
}
if( uprofile == null ){
	response.sendRedirect(request.getContextPath()+"/LOGINERROR.jsp");
	return;
}
%>