⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 zhaopin1.asp

📁 简单的servlet/jsp注册
💻 ASP
字号:
<%
if session("admin_name")="" then
    response.redirect "../index.asp"
	response.end
end if
%>
<!--#include file="../inc/adconn.asp"--> 
<!--#include file="../css.asp"-->
<link rel="stylesheet" type="text/css" href="../style.css">
<BODY bgcolor="#FFFFFF" marginheight=0 marginwidth=0 leftmargin=5>
<font color="#FF0000">  请点击相应的人的姓名查看其详细情况。</font><br>
<br>
  
<TABLE width="100%" border="0" cellpadding="4" cellspacing="1" bgcolor="#336699">
  <form action="zhaopindel.asp"  method="get" enctype="multipart/form-data" name="form1">
    <tr height=25 > 
      <TD width="15%" align="center" background="../images/pics/tile_sub.gif"><font color="#FFFFFF"><b>ID号</b></font></TD>
      <TD width="30%" align="center" background="../images/pics/tile_sub.gif"><font color="#FFFFFF"><b>姓名</b></font></TD>
      <TD width="30%" align="center" background="../images/pics/tile_sub.gif"><font color="#FFFFFF"><b>最高学历</b></font></TD>
      <TD width="25%" align="center" background="../images/pics/tile_sub.gif"><font color="#FFFFFF"> 
        <input type='submit' value='删除'>
        </font></TD>
    </TR>
    <%dim sql, rs
Set rs= Server.CreateObject("ADODB.Recordset") 
sql="select * from zhaopin order by id desc" 
rs.open sql,conn,1,1 
%>
    <%do while not rs.eof%>
    <tr align="center" height="20"> 
      <td width="45" height="28" bgcolor="#ffffff"><font face="Arial"><b><%=rs("id")%></b></font></td>
      <td width="320" bgcolor="#ffffff"><a href=jieshou.asp?id=<%=rs("id")%>><%=rs("name")%></a></td>
      <td bgcolor="ffffff"><a href=jieshou.asp?id=<%=rs("id")%>><%=rs("degree")%></a></td>
      <td bgcolor="#ffffff"> 
        <input type='checkbox' name='selAnnounce' value='<%=cstr(rs("id"))%>'>
      </td>
    </tr>
              <% rs.movenext
        loop
        %>
		</form>
  </table>
</center>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -