-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlookjob.asp
103 lines (97 loc) · 2.82 KB
/
lookjob.asp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<%@ language="vbscript"%>
<!--#include file="inc\dbconn.asp"-->
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn"/>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"/>
<link href="inc/css_index.css" rel="stylesheet" type="text/css">
<title>MyJob易聘网 - 招聘信息</title>
<link href="inc/css.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style7 {
font-size: 10.7pt;
color: #FFFFFF;
font-weight: bold;
}
.style8 {
color: #3169B5;
font-weight: bold;
font-size:10.7pt;
}
.unnamed1 {
line-height: 20px;
}
.style9 {
font-size: 14pt;
color: #3169B5;
font-weight: bold;
}
.style10 {
font-size: 10.7pt;
}
-->
</style>
</head>
<body>
<!--#include file="inc/inc_top.asp"-->
<%
dim comno,com_name
enrol_id = request.querystring("enrol_id")
com_name = request.QueryString("com_name")
dim conn
set conn = open_conn
dim sql,sql2
sql = "select * from enrol where enrol_id = '"&enrol_id&"'"
sql2 = "select * from coms where com_name = '"&com_name&"'"
set rs = conn.execute(sql)
set rs2 = conn.execute(sql2)
session("com_id1")=rs2("com_id")
session("enrol_id1")=rs("enrol_id")
%>
<!--#include file="inc/emptyline.asp"-->
<table cellpadding="0" cellspacing="0" width="778">
<tr>
<tr>
<td colspan="3" align="center" height="30" class="style9">公司介绍</td>
</tr>
<td width="20%" align="right">
<span class="style8">公司名称:</span><br>
<span class="style8">公司所属行业:</span><br>
<span class="style8">公司地址:</span><br>
<span class="style8">招聘职位:</span><br>
<span class="style8">招聘类型:</span><br>
<span class="style8">招聘人数:</span><br>
<span class="style8">招聘截至日期:</span><br>
<span class="style8">性别要求:</span><br>
<span class="style8">学历要求:</span><br>
<span class="style8">工作地点:</span><br>
<span class="style8">年龄要求:</span><br>
<span class="style8">详细介绍:</span><br>
</td>
<td wdith="60%" class="style10">
<%=com_name%><br>
<%=rs("enrol_trade")%><br>
<%=rs2("com_address")%><br>
<%=rs("enrol_function")%><br>
<%=rs("enrol_type")%><br>
<%=rs("enrol_quantity")%><br>
<%=rs("enrol_deadline")%><br>
<%=rs("enrol_sex")%><br>
<%=rs("enrol_degree")%><br>
<%=rs("enrol_locality")%><br>
<%=rs("enrol_age")%><br>
<%=rs("enrol_introduce")%><br>
</td>
<form name="myform" action="subresumelog.asp" method="post">
<td width="30%" valign="top">
<br>
<br>
<input type="submit" name="queding" value="我要应聘此职位" border="0">
</td>
</form>
</tr>
</table>
<!--#include file="inc/inc_foot.asp"-->
</body>
</html>