EditJobs.jsp
资源名称:shihua.rar [点击查看]
上传用户:zghglow
上传日期:2022-08-09
资源大小:27227k
文件大小:7k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
JavaScript
- <%@ page contentType="text/html; charset=GBK" %>
- <%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
- <%@ taglib uri="FCKeditor" prefix="FCK" %>
- <%@ page language="java" import="com.fredck.FCKeditor.*" %>
- <%@ page language="java" import="com.chinacannel.entity.*;" %>
- <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
- <%@ taglib uri="/WEB-INF/struts-html-el.tld" prefix="html-el" %>
- <html>
- <head>
- <title>EditJobs</title>
- <link href="Css/skinv2.0.css" rel="stylesheet" type="text/css" />
- </head>
- <body bgcolor="#ffffff">
- <form name="form" method="post" action="<%=request.getContextPath() %>/Manage/Jobs.do?todo=EditJobs">
- <table cellspacing="0" cellpadding="0" width="100%" border="0">
- <tr bgcolor="#cfdbe8">
- <td style="WIDTH: 20px" width="20" bgcolor="#cfdbe8" height="19"> <img height="10" src="<%=request.getContextPath() %>/Manage/images/icon.gif" width="12" alt="" /></td>
- <td valign="middle" bgcolor="#cfdbe8" colspan="2"> 人力资源栏目</td>
- </tr>
- <tr>
- <td style="HEIGHT: 31px" valign="top" align="left" height="80"> </td>
- <td style="HEIGHT: 31px" valign="middle" align="left" colspan="2">
- <img src="<%=request.getContextPath() %>/Manage/images/edit.gif" align="middle" alt="" /> 编辑招聘信息
- </td>
- </tr>
- <tr>
- <td style="HEIGHT: 1px" valign="top" align="left"></td>
- <td style="HEIGHT: 1px" valign="top" align="left" width="820" bgcolor="#cfdbe8"></td>
- <td style="HEIGHT: 1px; width: 144px;" valign="top" align="left"></td>
- </tr>
- <tr>
- <td style="HEIGHT: 381px" valign="top" align="left"></td>
- <td style="HEIGHT: 381px" valign="top" align="left" colspan="2">
- <br/>
- <table align="left" bgcolor="#cccccc" border="0" cellpadding="1" cellspacing="1" width="98%">
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 招聘标题:
- </td>
- <td style="height: 23px">
- <input size="50" type="text" id="txtTitle" name="title" value='<c:out value="${jobs.job_Title}" />' />
- <input type="hidden" id="hidID" name="id" value='<c:out value="${jobs.job_ID}" />' />
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 招聘部门:
- </td>
- <td style="height: 23px">
- <input size="50" type="text" name="branch" value='<c:out value="${jobs.job_Branch}" />' />
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 工作地点:
- </td>
- <td style="height: 23px">
- <input size="50" type="text" name="address" value='<c:out value="${jobs.job_Address}" />' />
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 工作所属类型:
- </td>
- <td style="height: 23px">
- <input type="text" name="jobType" value='<c:out value="${jobs.job_JobType}" />' />
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 招聘人数:
- </td>
- <td style="height: 23px">
- <input type="text" name="count" value='<c:out value="${jobs.job_Count}" />' />
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 有效时间:
- </td>
- <td style="height: 23px">
- <input type="text" name="endTime" value='<c:out value="${jobs.job_EndTime}" />' />
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 职位要求:
- </td>
- <td style="height: 23px">
- <input type="text" name="request" value='<c:out value="${jobs.job_Request}" />' />
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 薪资待遇:
- </td>
- <td style="height: 23px">
- <%
- Jobs jobs = (Jobs)request.getAttribute("jobs");
- FCKeditor oFCKeditor2 ;
- oFCKeditor2 = new FCKeditor( request, "pay" ) ;
- oFCKeditor2.setToolbarSet("Inf");
- // oFCKeditor.setBasePath( request.getContextPath() + "/" ) ;
- oFCKeditor2.setWidth("600");
- oFCKeditor2.setHeight("150");
- if(jobs != null){
- if(jobs.getJob_Desc() != null){
- oFCKeditor2.setValue(jobs.getJob_Pay());
- }
- }
- out.println( oFCKeditor2.create() ) ;
- %>
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 联系方式:
- </td>
- <td style="height: 23px">
- <%
- FCKeditor oFCKeditor1 ;
- oFCKeditor1 = new FCKeditor( request, "contact" ) ;
- oFCKeditor1.setToolbarSet("Inf");
- // oFCKeditor.setBasePath( request.getContextPath() + "/" ) ;
- oFCKeditor1.setWidth("600");
- oFCKeditor1.setHeight("150");
- if(jobs != null){
- if(jobs.getJob_Desc() != null){
- oFCKeditor1.setValue(jobs.getJob_Contact());
- }
- }
- out.println( oFCKeditor1.create() ) ;
- %>
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 职位描述:
- </td>
- <td style="height: 23px">
- <%
- FCKeditor oFCKeditor ;
- oFCKeditor = new FCKeditor( request, "desc" ) ;
- oFCKeditor.setToolbarSet("Inf");
- // oFCKeditor.setBasePath( request.getContextPath() + "/" ) ;
- oFCKeditor.setWidth("600");
- oFCKeditor.setHeight("150");
- if(jobs != null){
- if(jobs.getJob_Desc() != null){
- oFCKeditor.setValue(jobs.getJob_Desc());
- }
- }
- out.println( oFCKeditor.create() ) ;
- %>
- </td>
- </tr>
- <tr bgcolor="#ffffff" align="center">
- <td colspan="2">
- <input type="submit" id="btnSave" value="保 存" onclick="" />
- <input type="button" value="返 回" onclick="window.history.go(-1);" />
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </form>
- </body>
- </html>