📄 resume_select02.jsp
字号:
<jsp:include page="../user/checklogin02.jsp" flush="true"/>
<%@ page contentType="text/html; charset=GB2312" %>
<%@ page import="foton.util.*"%>
<%@ page import="foton.resume.*"%>
<%@ page import="java.util.*" %>
<%@ page import="java.util.Date"%>
<STYLE type=text/css>#Layer {
LEFT: 0px; POSITION: relative; TOP: 0px
}
BODY {
FONT-SIZE: 12px
}
TD {
FONT-SIZE: 12px
}
P {
LINE-HEIGHT: 150%
}
.px14 {
FONT-SIZE: 14px
}
.ff {
COLOR: #ffffff
}
.ff :link {
COLOR: #ffffff; TEXT-DECORATION: none
}
.ff :visited {
COLOR: #ffffff; TEXT-DECORATION: none
}
.ff :hover {
COLOR: #ffffff; TEXT-DECORATION: underline
}
.ff :active {
COLOR: #ffffff; TEXT-DECORATION: none
}
</STYLE>
<html>
<head>
<title>
简历管理
</title>
</head>
<BODY bgColor=#ffffff leftMargin=0 topMargin=0 MARGINHEIGHT="0" MARGINWIDTH="0">
<TABLE cellSpacing=0 cellPadding=0 width=800 bgColor=#0e3092 valign=top
border=0>
<TBODY>
<TR height=55 >
<td width=200 valign=top ><IMG height=55 hspace=25
src="../../images/t_2.gif" width=194 vspace=3 border=0> </td>
</TR></TBODY></TABLE>
<TABLE cellSpacing=0 cellPadding=0 width=800 bgColor=#0e3092 border=0>
<TBODY>
<TR vAlign=bottom>
<TD height=10>
<DIV align=right><IMG height=8 src="../../images/001.gif"
width=750></DIV></TD></TR></TBODY></TABLE>
<TABLE cellSpacing=0 cellPadding=0 width=800 background=../../images/t_n1_bj2.gif
border=0>
<TBODY>
<TR align=right>
<TD><IMG height=34 src="../../images/t_3.gif"
width=188></TD></TR></TBODY></TABLE>
<!-- #EndLibraryItem -->
<h1 align="center">简历管理 </h1>
<form action="resume_serv.jsp" name="form2" method="post">
<table width=100% border=0 cellspacing=1 cellpadding=3 width=800 bgColor=#0000ff>
<tr bgcolor=#8899cc>
<td> 姓名</td>
<td> 应聘职位 </td>
<td> 现职位</td>
<td> 学历</td>
<td> 毕业院校</td>
<td> 年龄</td>
<td> 性别 </td>
<td> 专业</td>
<td>简历投放日期</td>
</tr>
<% Condition condition = new Condition();
int pageNum = 10;
int currPage;
String url = "resume_select02.jsp";
if (request.getParameter("pages")==null) {
currPage =0;
}
else {
currPage = new Integer(request.getParameter("pages")).intValue();
}
System.out.println("Here is currPage!");
condition.setPageNum(pageNum);
condition.setCurrPage(currPage);
String jobName = request.getParameter("jobName");
System.out.println("Here is resume_select.jsp!! jobName= "+jobName);
condition.setJobName(jobName);
// ArrayList list = (ArrayList)session.getAttribute("queryResult");
resumeDAO dao = new resumeDAO();
ArrayList list = dao.getJobResume(condition);
System.out.println("Here is arraylist!");
Iterator it = list.iterator();
System.out.println("Here is iterator!");
while (it!=null && it.hasNext()) {
resumeInfo info = (resumeInfo)it.next();
System.out.println("Here is next()!");
%>
<tr bgcolor=#ffffff>
<td><a href ="resume_display02.jsp?RID=<%=info.getRID()%>" target="_blank"> <%=info.getName()%></a> </td>
<td> <%=info.getJobName()%> </td>
<td> <%=info.getOccupation()%> </td>
<td> <%=info.getDegree()%> </td>
<td> <%=info.getCollege()%> </td>
<%
String birthday = info.getBirthday();
System.out.println("get birthday");
int birthYear = new Integer(birthday.substring(0,4)).intValue();
System.out.println("brithday="+birthday +"get int birthYear="+birthYear);
String curYear = String.valueOf(new java.util.Date());
System.out.println("current year =" + curYear);
int currYear = new Integer(curYear.substring(24,28)).intValue();
// int currYear = new java.util.Date().getYear();
System.out.println("get int currYear="+currYear);
int age = currYear - birthYear;
%>
<td> <%=age%> </td>
<td> <%=info.getSex()%> </td>
<td> <%=info.getMajorType()%> </td>
<td> <%=info.getStoreDate()%> </td>
</tr>
<% } %>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
<%=Pagination.getPaginationScript(condition.getCurrPage(),condition.getPageNum(),condition.getRecordNum(),url)%>
<p align=center>
<input type=submit name=button1 value="关闭" onclick="window.close()">
</p>
</form>
<TABLE cellSpacing=0 cellPadding=0 width=800 background="../../images/d_1_bj.gif"
border=0>
<TBODY>
<TR>
<TD width=100 valign=bottom><IMG height=19 src="../../images/d_1.gif" width=100></TD>
<TD width=700 valign=bottom><FONT color=#cccccc>北汽福田汽车股份有限公司 版权所有 ©
2004</FONT></TD></TR></TBODY></TABLE><!-- #EndLibraryItem -->
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -