%@ page import="WebFlow.*" %>
<%@ page import="WebFlow.ContextManager.*" %>
<%
String userName=storeInfo.getTableVal("userName");
ContextManager cm=ServerServlet.getContextManager(userName);
String[] problemList = cm.listProblems();
if(!problemList[0].equals("null")) {
%>
Problem Archive
Problem Selection
The following is a list of your old problems. You can visualize your data which you have already created after submitting the job.
<% } else { //if(problemList)
%>
You don't have your problem archive.
<%
}
%>