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

📄 viewjobinfo2.jsp

📁 java阿里巴巴代码
💻 JSP
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

<%@ page import="java.util.*"%>
<%@ page import="java.text.SimpleDateFormat"%>
<%@ page import="java.util.Date"%>
<%@ page contentType="text/html;charset=GBK"%>
<%@ page import="com.saas.biz.JobMgr.JobInfo"%>
<%@ page import="com.saas.biz.userMgr.UserInfo"%>
<%@ page import="com.saas.biz.custMgr.Custinfo"%>

<%
	String date = new SimpleDateFormat("yyyy-MM-dd").format(new Date());
	String job_id = "";
	String title = "";
	String req = "";
	String publish_user_id = "";
	String cust_id = "";
	String cust_name = "";
	String job_addr = "";
	//String enquiry_date="";
	if (request.getParameter("job_id") != null) {
		job_id = request.getParameter("job_id");
	}
	
	JobInfo jobObj = new JobInfo();
	ArrayList jobList = new ArrayList();
	if (job_id != null && !job_id.equals("")) 
	{
	    jobList = jobObj.genOneJob(job_id);
	  if (jobList != null && jobList.size() > 0) 
	  {
		HashMap map = (HashMap) jobList.get(0);
		job_id = map.get("job_id").toString();
		if (map.get("title") != null) 
		{
	     	title = map.get("title").toString();
		}
		if (map.get("request") != null) 
		{
	    	req = map.get("request").toString();
		}
		if (map.get("publish_user_id") != null) 
		{
				publish_user_id = map.get("publish_user_id").toString();
				UserInfo userInfo = new UserInfo();
				ArrayList list = new ArrayList();
				HashMap map1 = new HashMap();
				list = userInfo.genOneUserInfo(publish_user_id);
				if (list != null && list.size() > 0) 
				{
					map1 = (HashMap) list.get(0);
					cust_id = map1.get("cust_id").toString();
					Custinfo custInfo = new Custinfo();
					ArrayList list2 = new ArrayList();
					HashMap map2 = new HashMap();
					list2 = custInfo.genSpecCustInfo(cust_id);
					if (list2 != null && list2.size() > 0) 
					{
						map2 = (HashMap) list2.get(0);
						cust_name = map2.get("cust_name").toString();
					}
				}
			}
			if (map.get("job_addr") != null) 
			{
		     job_addr = map.get("job_addr").toString();
			}
		}
	}
%>
<html>
	<head>
		<title>www.Xsaas.com</title>
		<link href="/style/layout.css" rel="stylesheet" type="text/css">
		<script language="javascript" src="/js/Calendar_Ly.js"></script>
	</head>
	<body>
		<form name="classForm" method="post" action="/doTradeReg.do" target="_self">
	
			<table width="818" border="0" cellspacing="0" cellpadding="0" align="center">
				<tr>
					<td height="26">
						&nbsp;
					</td>
				</tr>
				<tr>
					<table width="93%" border=0 cellpadding=5 cellspacing=1 align=center bgcolor="#dddddd">
						<tr>
							<td class="line1" align="left" colspan="2">
								招聘信息
							</td>
						</tr>
						<tr>
							<td style="background-color:#f6f6f6; color:#000000;  font-weight:bold; font-size:13px;" align=right width=15%>
								职位标题
							</td>
							<td style="background-color:#ffffff; color:#000000;  font-size:12px;" align=left width=85%>
								<%=title%>
							</td>
						</tr>
						<tr>
							<td style="background-color:#f6f6f6; color:#000000;  font-weight:bold; font-size:13px;" align=right valign="top">
								职位要求
							</td>
							<td style="background-color:#ffffff; color:#000000;  font-size:12px;" align=left>
								<%=req%>
							</td>
						</tr>
						<tr>
							<td style="background-color:#f6f6f6; color:#000000;  font-weight:bold; font-size:13px;" align=right>
								工作地点
							</td>
							<td style="background-color:#ffffff; color:#000000;  font-size:12px;" align=left>
								<%=job_addr%>
							</td>
						</tr>
						<tr>
							<td style="background-color:#f6f6f6; color:#000000;  font-weight:bold; font-size:13px;" align=right>
								求职意向:
							</td>
							<td style="background-color:#ffffff; color:#000000;  font-size:12px;" align=left>
								<textarea name="enquiry_content" cols="50" rows="6"></textarea>
							</td>
						</tr>

						<input type="hidden" name="publish_user_id" value="<%=publish_user_id%>">
						<input type="hidden" name="sale_id" value="<%=job_id%>">
						<input type="hidden" name="deal_tag" value="0">
						<input type="hidden" name="trade_type_code" value="2345">
					
						<tr>
							<td align="left" style="background-color:#f6f6f6; color:#000000;  font-weight:bold; font-size:13px;padding-top:10px;padding-bottom:10px;" colspan="2">
								<input type="submit" value="发送求职意向" name="submit"  border="0" width="64" height="22" />
							</td>
						</tr>
					</table>
				</tr>
			</table>
		</form>
	</body>
</html>

⌨️ 快捷键说明

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