-
Notifications
You must be signed in to change notification settings - Fork 0
/
Human_info.asp
81 lines (80 loc) · 1.74 KB
/
Human_info.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
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!--#include file="Inc/config.asp"-->
<!--#include file="Inc/function.asp"-->
<!--#include file="Inc/topWeb.asp"-->
<%
dim jid,job_info,job_want
if request.QueryString("act")="show" then
jid=safeRequest(request.QueryString("jid"))
DBopen("QY_DB/#qyz#.mdb")
rs.open "select * from qy_job where j_id="&jid,conn,1,1
job_info=rs("j_info")
job_want=rs("j_want")
DBclose()
else
alertInfo("参数错误")
end if
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
#job_info {
height: auto;
width: 400px;
margin-right: auto;
margin-left: auto;
border: 8px solid #999999;
font-family: "微软雅黑";
font-size: 12px;
color: #666666;
}
#job_info h1 {
display: block;
text-align: center;
font-family: "微软雅黑";
font-size: 18px;
font-weight: bold;
color: #333333;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 10px;
margin-left: 0px;
border-bottom-width: 1px;
border-bottom-style: dashed;
border-bottom-color: #666666;
}
#job_info h2 {
font-family: "微软雅黑";
font-size: 14px;
font-weight: bold;
color: #666666;
height: 25px;
width: 100%;
display: block;
margin: 0px;
padding: 0px;
}
#job_info p {
padding: 5px;
font-family: "微软雅黑";
font-size: 12px;
color: #666666;
margin: 0px;
}
-->
</style>
</head>
<body>
<div id="job_info">
<h1>详细信息</h1>
<h2>职位介绍:</h2>
<p><%=job_info%></p>
<h2>任职资格:</h2>
<%=job_want%>
</div>
</body>
</html>