⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jobapply.jsp

📁 系统包含求职用户和系统管理员两个角色
💻 JSP
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" %>
<%@ page import="com.publish.jxc.charpter9.*" %>
<%@ page import="java.util.ArrayList" %>
<%
	response.setHeader("Pragma","No-cache"); 
	response.setHeader("Cache-Control","no-cache"); 
	response.setDateHeader("Expires", 0);	
	String contextPath = request.getContextPath();
	String companyName = (String)session.getAttribute("companyName");
	if (session.getAttribute("user") == null)	{
		out.print(Utility.outPrintPage("你还没登录,无权查看此页面!", contextPath + "/index.jsp"));
		return;
	}
%>
<html>
<head>
<title>个人职位管理系统</title>
<meta http-equiv="expires" content="0">
<link rel="stylesheet" href="<%=contextPath%>/css/itsp.css" type="text/css">
</head>

<body >
<div align="center">
  <table width="100%" border="0" cellspacing="0" cellpadding="0" height="22">
    <tr> 
      <td width="1"><img src="<%=contextPath%>/images/top_r1.GIF" width="62" height="22"></td>
      <td width=150 align="center"> 个人职位管理系统--<%=companyName%>职位申请</td>
      <td><img src="<%=contextPath%>/images/top_r2.GIF" width="294" height="22"></td>
	  <td width=100 align="center"><a href="<%=contextPath%>/index.jsp">[ 退出系统 ]</a></td>
    </tr>
  </table>
  <br>
  <br>
  <table bgcolor="#999999" align=center border=0 cellpadding=1 cellspacing=1 width="90%">
    <tbody> 
    <tr bgcolor="#efefef" align="center" valign="middle"> 
      <td class=ttTable height=30 width="20">&nbsp;</td>
      <td class=ttTable height=30 width="0">职位名称</td>
      <td class=ttTable height=30 width="0">要求学历</td>
      <td class=ttTable height=30 width="0">要求专业</td>
      <td class=ttTable height=30 width="0">要求技能</td>
      <td class=ttTable height=30 width="0"><div align="center">拟招人数</div></td>
    </tr>
<%
	ArrayList showList = (ArrayList)session.getAttribute("showList");
	if (showList != null)
	{
		int length = showList.size();
		for(int i=0; i<length; i++)
		{
			JobXMLModel job = (JobXMLModel)showList.get(i);
%>
<tr align="center" bgcolor="#ffffff" valign="middle"> 
      <td class=tdsmall height=25 width="20"><%=(i+1)%></td>
      <td class=tdsmall height=25 width="0"><%=job.getName()%></td>
      <td class=tdsmall height=25 width="0"><%=job.getXueli()%></td>
      <td class=tdsmall height=25 width="0"><%=job.getSpeciality()%></td>
      <td class=tdsmall height=25 width="0"><%=job.getSkills()%></td>
      <td class=tdsmall height=25 width="0"><%=job.getCounts()%></td>
    </tr>
<% 		} 
	}
%>
	</tbody>
  </table>	
  <br>
  <form name=jobform action="/charpter9/manager" method=post >
  <table align=center border=0 cellpadding=0 cellspacing=2 width="95%">
    <tbody> 
    <tr valign=center> 
      <td align=middle> <br>
        <table border=0 cellpadding=0 cellspacing=0>
          <tr><td><input class=stbtm type="submit" name="submit" value="返回上页" ></td></tr>
        </table>
      </td>
    </tr>
  </table>
  <input name="actionName" type="hidden" value="ZWVIEW">
  </form>
  <p><br>
  </p>
  <p>&nbsp;</p>
</div>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -