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

📄 manage.asp

📁 自己做的毕业设计
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="pass.asp"-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>图书馆管理系统</title>
<link href="css.css" rel="stylesheet" type="text/css" />
</head>

<body>
<!--#include file="conn.asp"-->
<%
set rs=conn.execute("select * from [user] where id="&session("id"))%>
<form name="form1" method="post" action="search.asp">
<center>
<table width="800" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td height="150"><!--#include file="top.asp"--></td>
  </tr>
  <tr>
    <td align="center" valign="top"><table width="100%"  border="0" cellpadding="0" cellspacing="0" class="tb">
    <tr>
      <td align="center" valign="top"><table width="100%"  border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td width="180" align="left" valign="top"><!--#include file="left.asp"--></td>
          <td align="center" valign="top"><table width="90%"  border="0" cellpadding="2" cellspacing="1" bgcolor="#FFFFFF">
            <tr align="center" bgcolor="#FFFFFF">
              <td height="30" colspan="4"><strong>用户个人资料</strong></td>
              </tr>
            <tr bgcolor="#FFFFFF">
              <td width="36%" height="20" align="right"><strong>用户名:</strong></td>
              <td width="23%" height="20" align="left"><%=rs("username")%></td>
              <td width="13%" align="right"><strong>姓名:</strong></td>
              <td width="28%" align="left"><%=rs("name")%></td>
            </tr>
            <tr bgcolor="#FFFFFF">
              <td height="20" align="right"><strong>性别:</strong></td>
              <td height="20" align="left"><%=rs("sex")%></td>
              <td align="right"><strong>证件号码:</strong></td>
              <td align="left"><%=rs("no")%></td>
            </tr>
            <tr bgcolor="#FFFFFF">
              <td height="20" align="right"><strong>电话:</strong></td>
              <td height="20" align="left"><%=rs("tel")%></td>
              <td align="right"><strong>地址:</strong></td>
              <td align="left"><%=rs("address")%></td>
            </tr>
            <tr bgcolor="#FFFFFF">
              <td height="20" align="right"><strong>注册日期:</strong></td>
              <td height="20" colspan="3" align="left"><%=rs("time")%></td>
            </tr>
            <tr bgcolor="#FFFFFF">
              <td height="20" align="right"><strong>是否通过审核:</strong></td>
              <td height="20" colspan="3" align="left"><%if rs("sh")="1" then
			  response.Write "通过"
			  else
			  response.Write "未通过"
			  end if%></td>
            </tr>
          </table></td>
        </tr>
      </table></td>
    </tr>
  </table></td>
  </tr>
  <tr>
    <td height="60"><!--#include file="bottom.asp"--></td>
  </tr>
</table>
</center>
</form>
</body>
</html>

⌨️ 快捷键说明

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