jobs.cs
上传用户:dbstep
上传日期:2022-08-06
资源大小:2803k
文件大小:8k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

ASP/ASPX

  1. <%
  2.   
  3. function ContentList()
  4.   dim SortPath
  5.       SortPath=request.QueryString("SortPath")
  6.   dim idCount'记录总数
  7.   dim pages'每页条数
  8.       pages=25
  9.   dim pagec'总页数
  10.   dim page'页码
  11.       page=clng(request("Page"))
  12.   dim pagenc'每页显示的分页页码数量=pagenc*2+1
  13.       pagenc=2
  14.   dim pagenmax'每页显示的分页的最大页码
  15.   dim pagenmin'每页显示的分页的最小页码
  16.   dim datafrom'数据表名
  17.       datafrom="sk_Jobs"
  18.   dim datawhere'数据条件
  19.       datawhere="where ViewFlag "
  20.   dim sqlid'本页需要用到的id
  21.   dim Myself,PATH_INFO,QUERY_STRING'本页地址和参数
  22.       PATH_INFO = request.servervariables("PATH_INFO")
  23.   QUERY_STRING = request.ServerVariables("QUERY_STRING")'
  24.       if QUERY_STRING = "" then
  25.     Myself = PATH_INFO & "?"
  26.   elseif Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")=0 then
  27.     Myself= PATH_INFO & "?" & QUERY_STRING & "&"
  28.   else
  29.     Myself = Left(PATH_INFO & "?" & QUERY_STRING,Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")-1)
  30.   end if
  31.   dim taxis'排序的语句 asc,desc
  32.       taxis="order by id desc "
  33.   dim i'用于循环的整数
  34.   dim rs,sql'sql语句
  35.   '获取记录总数
  36.   sql="select count(ID) as idCount from ["& datafrom &"]" & datawhere
  37.   set rs=server.createobject("adodb.recordset")
  38.   rs.open sql,conn,0,1
  39.   idCount=rs("idCount")
  40.   '获取记录总数
  41.   if(idcount>0) then'如果记录总数=0,则不处理
  42.     if(idcount mod pages=0)then'如果记录总数除以每页条数有余数,则=记录总数/每页条数+1
  43.   pagec=int(idcount/pages)'获取总页数
  44.     else
  45.       pagec=int(idcount/pages)+1'获取总页数
  46.     end if
  47. '获取本页需要用到的id============================================
  48.     '读取所有记录的id数值,因为只有id所以速度很快
  49.     sql="select id from ["& datafrom &"] " & datawhere & taxis
  50.     set rs=server.createobject("adodb.recordset")
  51.     rs.open sql,conn,1,1
  52.     rs.pagesize = pages '每页显示记录数
  53.     if page < 1 then page = 1
  54.     if page > pagec then page = pagec
  55.     if pagec > 0 then rs.absolutepage = page  
  56.     for i=1 to rs.pagesize
  57.   if rs.eof then exit for  
  58.   if(i=1)then
  59.     sqlid=rs("id")
  60.   else
  61.     sqlid=sqlid &","&rs("id")
  62.   end if
  63.   rs.movenext
  64.     next
  65.   '获取本页需要用到的id结束============================================
  66.   end if
  67.   Response.Write "<table width='100%' border='0' cellpadding='5' cellspacing='1' bgcolor='#CCCCCC'>"
  68.   Response.Write "  <tr>" &_
  69.                  "    <td width='4%' bgcolor='#EEEEEE' align='center'>NO</td>" &_
  70.                  "    <td width='45%' bgcolor='#EEEEEE' align='center'>职位名称</td>" &_
  71.                  "    <td width='10%' bgcolor='#EEEEEE' align='center'>招聘人数</td>" &_
  72.                  "    <td width='12%' bgcolor='#EEEEEE' align='center'>工作地点</td>" &_
  73.                  "    <td width='23%' bgcolor='#EEEEEE' align='center'>简历提交日期</td>" &_
  74.                  "    <td width='6%' bgcolor='#EEEEEE' align='center'>查看</td>" &_
  75.                  "  </tr>"
  76.   if(idcount>0 and sqlid<>"") then'如果记录总数=0,则不处理
  77.     '用in刷选本页所语言的数据,仅读取本页所需的数据,所以速度快
  78.     sql="select * from ["& datafrom &"] where id in("& sqlid &") "&taxis
  79.     set rs=server.createobject("adodb.recordset")
  80.     rs.open sql,conn,0,1
  81. dim JobNO
  82. JobNO=1
  83.     while not rs.eof '填充数据到表格
  84.     Response.Write "  <tr>" &_
  85.                    "    <td bgcolor='#FFFFFF' align='center'>"&JobNO&"</td>" &_
  86.                    "    <td bgcolor='#FFFFFF'><a href='JobsView.asp?ID="&rs("ID")&"'>"&rs("JobName")&"</a></td>" &_
  87.                    "    <td bgcolor='#FFFFFF'>"&rs("JobNumber")&"</td>" &_
  88.                    "    <td bgcolor='#FFFFFF'>"&rs("JobAddress")&"</td>" &_
  89.                    "    <td bgcolor='#FFFFFF'>"&FormatDate(rs("AddTime"),13)&"-"&FormatDate(rs("EndDate"),13)&"</td>" &_
  90.                    "    <td bgcolor='#FFFFFF'>"&rs("ClickNumber")&"</td>" &_
  91.                    "  </tr>"
  92.   rs.movenext
  93.   JobNO=JobNO+1
  94.     wend
  95.   else
  96.     response.write "<tr><td align='center' colspan='6' bgcolor='#FFFFFF'>暂无相关信息</td></tr></table>"
  97. exit function
  98.   end if
  99.   Response.Write "<tr>" & vbCrLf
  100.   Response.Write "<td colspan='6' align='right' bgcolor='#FFFFFF'>" & vbCrLf
  101.   Response.Write "共计:<font color='#ff6600'>"&idcount&"</font>条记录&nbsp;页次:<font color='#ff6600'>"&page&"</font></strong>/"&pagec&"&nbsp;每页:<font color='#ff6600'>"&pages&"</font>条&nbsp;&nbsp;&nbsp;&nbsp;" & vbCrLf
  102.   pagenmin=page-pagenc '计算页码开始值
  103.   pagenmax=page+pagenc '计算页码结束值
  104.   if(pagenmin<1) then pagenmin=1 '如果页码开始值小于1则=1
  105.   if(page>1) then response.write ("<a href='"& myself &"Page=1'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>9</font></a>&nbsp;") '如果页码大于1则显示(第一页)
  106.   if(pagenmin>1) then response.write ("<a href='"& myself &"Page="& page-(pagenc*2+1) &"'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>7</font></a>&nbsp;") '如果页码开始值大于1则显示(更前)
  107.   if(pagenmax>pagec) then pagenmax=pagec '如果页码结束值大于总页数,则=总页数
  108.   for i = pagenmin to pagenmax'循环输出页码
  109. if(i=page) then
  110.   response.write ("&nbsp;<font color='#ff6600'>"& i &"</font>&nbsp;")
  111. else
  112.   response.write ("[<a href="& myself &"Page="& i &">"& i &"</a>]")
  113. end if
  114.   next
  115.   if(pagenmax<pagec) then response.write ("&nbsp;<a href='"& myself &"Page="& page+(pagenc*2+1) &"'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>8</font></a>&nbsp;") '如果页码结束值小于总页数则显示(更后)
  116.   if(page<pagec) then response.write ("<a href='"& myself &"Page="& pagec &"'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>:</font></a>") '如果页码小于总页数则显示(最后页)
  117.   Response.Write "</td>" & vbCrLf
  118.   Response.Write "</tr>" & vbCrLf
  119.   Response.Write "</table>" & vbCrLf
  120.   rs.close
  121.   set rs=nothing
  122. end function 
  123. %>
  124. <%
  125. function WebMenu()
  126.   response.write "<div class='l2'><a href='JobsList.asp'>招聘信息</a></div>"
  127.   response.write "<div class='l2'><a href='../user/MemberTalent.asp' rel='facebox'>我的应聘</a></div>"
  128. end function
  129. function WebContent()
  130.   dim ID
  131.   ID=request.QueryString("ID")
  132.   if ID="" or (not isnumeric(ID)) then
  133.     response.write "<div align='center'>数据读取异常错误</div>"
  134.     exit function
  135.   end if
  136.   dim rs,sql
  137.   set rs = server.createobject("adodb.recordset")
  138.   sql="select * from sk_Jobs where ViewFlag and ID="&ID
  139.   rs.open sql,conn,1,3
  140.   response.write"<table width='100%' border='0' cellspacing='0' cellpadding='0'>"
  141.   if rs.bof and rs.eof then
  142.     response.write "<tr><td>暂无相关信息</td></tr>"
  143.   else
  144.     response.write "<tr><td colspan='2'><hr width='100%' size='1' noshade='noshade' color='#CCCCCC'></td></tr>"
  145.     response.write "<tr><td width='420'>职位名称:<font style='font-weight: bold;color: #1874CD'>"&rs("JobName")&"</font></td>"
  146.     response.write "<td width='184'>工作地点:"&rs("JobAddress")&"</td></tr>"
  147.     response.write "<tr><td>招聘人数:"&rs("JobNumber")&"</td>"
  148.     response.write "<td>工资待遇:"&rs("Emolument")&"</td></tr>"
  149.     response.write "<tr><td>有 效 期:"&FormatDate(rs("AddTime"),13)&"-"&FormatDate(rs("EndDate"),13)&"</td>"
  150.     response.write "<td>提交简历:<a href='user/TalentWrite.asp?JobID="&rs("ID")&"&JobName="&server.urlencode(rs("JobName"))&"' rel='facebox'><img src='../img/Jobs_resume_up.gif' border='0' align='absmiddle'></a></td></tr>"
  151.     response.write "<tr><td height='22' bgcolor='#EEEEEE' colspan='2'><img src='../img/Pro_information_title.gif'></td></tr>"
  152.     response.write "<tr><td colspan='2' height='12'></td></tr>"
  153.     response.write "<tr><td colspan='2' width='604'>"&rs("Content")&"</td></tr>"
  154. rs("ClickNumber")=rs("ClickNumber")+1
  155.     response.write "<tr><td class='ListTitle' colspan='2'></td></tr>" 
  156.     response.write "<tr><td>点击次数:"&rs("ClickNumber")&"</td>"
  157. response.write "<td align='right'><a href='#TOP'><img src='../img/Button_top_01.gif' align='absbottom' border='0'></a></td></tr>" 
  158. rs.update    
  159.   end if
  160.   response.write"</table>"
  161.   rs.close
  162.   set rs=nothing
  163. end function
  164. %>