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

📄 userlook.asp

📁 本学期要实讯
💻 ASP
字号:
<% option explicit %>
<!--#include file="odbc_connection.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>查看信息</title>
<style type="text/css">
<!--
body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
.style3 {font-size: 12px; color: #666666; }
.style4 {font-size: 12px; color: #666666; font-weight: bold; }
.style6 {font-size: 12px; color: #6666FF; }
-->
</style></head>

<body>


<% dim rs,sql,user
user=session("user")
sql="select * from userinfo where user='"&user&"'" 
set rs=db.execute(sql)%>
<%if rs("make")="0" then%>
<table width="492" height="114" border="0" cellpadding="4" cellspacing="0">
  <tr>
    <td height="40" align="center" class="style6">&nbsp;</td>
  </tr>
  <tr>
    <td width="484" align="center" class="style6">对不起,没有你要查看的内容!<br>
      <br>
    你还没有登记你的个人求职信息!请你先进行个人登记!</td>
  </tr>
  <tr>
    <td height="2"></td>
  </tr>
</table>  
  <%else%>

<table width="560" height="452" border="0" cellpadding="2" cellspacing="0">
  <tr>
    <td height="452" align="center" valign="top"><table width="478" height="444" border="1" cellpadding="4" cellspacing="0" bordercolor="#CCCCCC" style="border-collapse:collapse ">
      <tr align="center">
        <td height="30" colspan="2" class="style4">个人求职登记</td>
      </tr>
      <tr>
        <td width="75" align="right"><span class="style6">&nbsp; 姓名:</span></td>
        <td width="430" align="left" class="style3"><%=rs("name")%></td>
      </tr>
      <tr>
        <td align="right"><span class="style6">性别:</span></td>
        <td align="left" class="style3"><%=rs("sex")%></td>
      </tr>
      <tr>
        <td align="right"><span class="style6">年龄:</span></td>
        <td align="left" class="style3"><%=rs("age")%></td>
      </tr>
      <tr>
        <td align="right"><span class="style6">专业:</span></td>
        <td align="left" class="style3"><%=rs("mylevel")%></td>
      </tr>
      <tr>
        <td align="right"><span class="style6">学历:</span></td>
        <td align="left" class="style3"><%=rs("major")%></td>
      </tr>
      <tr>
        <td align="right"><span class="style6">求职意向:</span></td>
        <td align="left" class="style3"> <span class="style6">求职意向1:</span><%=rs("job1")%><br>
            <br>
            <span class="style6">求职意向2:</span><%=rs("job2")%></td>
      </tr>
      <tr>
        <td height="29" align="right" class="style6">所在省份:</td>
        <td align="left" class="style3"><%=rs("shf")%></td>
      </tr>
      <tr>
        <td align="right"><span class="style6">联系地址:</span></td>
        <td align="left" class="style3"><%=rs("addr")%></td>
      </tr>
      <tr>
        <td align="right"><span class="style6">邮编:</span></td>
        <td align="left" class="style3"><%=rs("zip")%></td>
      </tr>
      <tr>
        <td align="right"><span class="style6">联系电话:</span></td>
        <td align="left" class="style3"><%=rs("tel")%></td>
      </tr>
      <tr>
        <td align="right"><span class="style6">E-mail:</span></td>
        <td align="left" class="style3"><%=rs("email")%></td>
      </tr>
      <tr>
        <td align="right"><span class="style6">个人简历:</span></td>
        <td align="left" class="style3"><%=replace(rs("home"),VBCrlf,"<br>")%></td>
      </tr>
      <tr align="center">
        <td height="39" align="right"><span class="style6">登记时间:</span></td>
        <td align="left" class="style3"><%=rs("user_date")%></td>
      </tr>
    </table></td>
  </tr>
</table>
<%end if%>
</body>
</html>

⌨️ 快捷键说明

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