|
|
|
|
|
|
|
|
|
|
49671969 |
|
地址:内蒙古呼和浩特市金山开发区
五一路加油站南 邮编: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")%> |
联系方式 |
<%=zxns("lxfs")%> |
|
|
|
<%
zxns.movenext
next
end if
zxns.close()
set zxns=nothing
%>
|
|
|
|