📄 invite_info_manage.asp
字号:
<%@ Language=VBScript %>
<HTML>
<HEAD>
<title>招聘管理</title>
<link href="../../js/hystudio.css" rel="stylesheet" type="text/css">
<!--#include file= "../dbase.asp"-->
<meta name="GENERATOR" Content="Microsoft Visual Studio.NET 7.0">
<style type="text/css"> <!-- .DotPad {background-color:#E6E6E6; cursor: default; border: 1px dotted #ffffff; padding-left: 4; padding-right: 4; padding-top: 1; padding-bottom: 1}
//--></style>
</HEAD>
<body>
<%
sql=" SELECT n_ID, v_JobName, i_Amount, v_JobDesire, (case c_State when 'y' then '有效' when 'n' then '无效' end )as c_State, d_Update "&_
" FROM hxdf_job_invite order by n_ID desc "
dim rs
set rs=server.CreateObject("adodb.recordset")
rs.Open sql,conn,1,1
if rs.EOF then
response.Write "暂时没有任何招聘信息。"
response.End()
end if
%>
<p align="center">招聘信息管理</p>
<table width="100%" height="14%" border="1" align="center" cellpadding="2" cellspacing="2" class="DotPad">
<tr>
<td width="3%" height="21" align="center" bgcolor="#99CCFF"></td>
<td width="12%" align="center" nowrap bgcolor="#99CCFF">招聘职位</td>
<td width="3%" align="center"nowrap bgcolor="#99CCFF">人数</td>
<td width="62%" align="center" nowrap bgcolor="#99CCFF">招聘要求</td>
<td width="11%" align="center" nowrap bgcolor="#99CCFF">发布时间</td>
<td width="6%" align="center" nowrap bgcolor="#99CCFF">状态</td>
<td width="3%" bgcolor="#99CCFF"></td>
</tr>
<%
i=1
do while not rs.EOF%>
<tr>
<td height="58%" align="right" valign="top" class="DotPad"><%=i%></td>
<td width="12%" valign="top" nowrap class="DotPad"><%=rs("v_JobName")%></td>
<td width="3%" align="right" valign="top" nowrap class="DotPad"><%=rs("i_Amount")%></td>
<td width="62%" valign="top" class="DotPad"><%=rs("v_JobDesire")%></td>
<td align="center" valign="top" nowrap class="DotPad"><%=FormatDateTime(rs("d_Update"),2)%></td>
<td align="center" valign="top" nowrap class="DotPad"><%=rs("c_State")%></td>
<td class="DotPad"></td>
</tr>
<%
i=i+1
rs.MoveNext
loop
rs.Close: set rs=nothing
%>
</table>
<p>备注:</p>
</body>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -