 |
|
|
|
|
|
 |
|
 |
|
49671969 |
|
地址:內蒙古呼和浩特市金山開發(fā)區(qū)
五一路加油站南 郵編:010110 |
|
|
|
|
|
|
|
|
|
<%
Dim zxns
Set zxns = Server.CreateObject("ADODB.Recordset")
zxns.ActiveConnection = conn
if request.QueryString("type")<>"" then
zxns.Source = "SELECT * FROM invite where zpgw='"&request.QueryString("type")&"' order by time desc"
else
zxns.Source = "SELECT * FROM invite order by time desc"
end if
zxns.CursorType = 3
zxns.CursorLocation = 2
zxns.LockType = 3
zxns.Open()
if zxns.recordcount>0 then
for k=1 to zxns.recordcount%>
|
招聘崗位:<%=zxns("zpgw")%> |
招聘對象 |
<%=zxns("zpdx")%> |
職位要求 |
<%=zxns("content")%> |
聯(lián)系方式 |
<%=zxns("lxfs")%> |
|
|
|
<%
zxns.movenext
next
end if
zxns.close()
set zxns=nothing
%>
|
|
|
|