muser.asp
上传用户:syzzy1975
上传日期:2022-07-17
资源大小:670k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
  2. <%
  3. %><!--#include file="manage/inc/config.asp"--> 
  4. <!--#include file="inc/conn.asp"--> 
  5. <!--#include file="inc/chk.asp"--> 
  6. <%
  7. set rs=server.CreateObject("adodb.recordset")
  8. rs.open "select book from [user] where username='"&request.cookies(cookieName)("username")&"' ",conn,1,1
  9. if rs.eof and rs.bof then
  10. call MsgBox("错误:此用户记录不存在!","Back","None")
  11. end if
  12. dim msg
  13. msg=rs("book")
  14. rs.close
  15. set rs=nothing
  16. %>
  17. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  18. <html>
  19. <head>
  20. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  21. <title>我家网络书店</title>
  22. <link href="style.css" rel="stylesheet" type="text/css">
  23. </head>
  24. <body>
  25. <!--#include file="head.htm"-->
  26. <table width="780" border="0" align="center" cellpadding="0" cellspacing="0">
  27.   <tr>
  28.     <td width="219" align="left" valign="top"><!--#include file="uleft.asp"-->      <br></td><td width="561" align="left" valign="top">
  29.       <br>      <table border="0" cellpadding="0" cellspacing="0">
  30.         <!--DWLayoutTable-->
  31.         <tr>
  32.           <td height="18"><img src="images/w.gif" width="18" height="18"></td>
  33.           <td style="color:#415373">消息中心</td>
  34.         </tr>
  35.       </table>      
  36.       <br>      <br>      <table width="90%" border="0" align="center" cellpadding="2" cellspacing="0">
  37.         <tr>
  38.           <td><%=msg%></td>
  39.         </tr>
  40.       </table>      <br>      <br>      <br>
  41.       </td>
  42.   </tr>
  43. </table>
  44. <!--#include file="foot.htm"-->
  45. </body>
  46. </html>