msgsentview.asp
上传用户:stone001
上传日期:2016-10-28
资源大小:685k
文件大小:3k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

ASP/ASPX

  1. <!--插入html头部分以及数据库接口-->
  2. <!--#include file="in_conn.asp"-->
  3. <!-- #include file="UbbCode.asp" -->
  4. <body>
  5. <!--插入网站置顶-->
  6. <% if u_name="" then
  7. Response.Redirect "log_err.asp"
  8. else
  9. %>
  10. <!--#include file="in_topmb.asp"-->
  11. <% end if %>
  12. <%
  13. '获取传值
  14. dim vid
  15. vid=Request.QueryString("id")
  16. IF isNumeric(vid) THEN
  17. vid=CLng(vid)
  18. ELSE
  19. Response.Redirect "resp.asp"
  20. END IF
  21. %>
  22. <table align="center" width="700" height="25" border="0" cellspacing="0" cellpadding="0" class="rdbar"><tr>
  23. <td width="100%" height="100%">
  24. &nbsp;<a href="index.asp">[首页]</a>-<a href="msgbox.asp">[站内消息箱]</a>-<a href="msgsent.asp">[已发送]</a>-<font class="ft1">查看已发送的消息</font>
  25. </td>
  26. </tr></table>
  27. <table align="center" width="700" height="101" border="0" cellspacing="0" cellpadding="6" class="rdd">
  28. <tr>
  29. <td width="150" valign="top" class="rdk2">
  30. <!--插入消息箱左部分-->
  31. <!--#include file="in_msg_left.asp"-->
  32. </td>
  33. <td valign="top">
  34. <%
  35. '读取相应的消息
  36. sqlstr="SELECT u.ID,u.name,u.sex,u.power,m.* FROM tblmates AS u INNER JOIN tblmsg AS m ON u.name=m.m_to WHERE m.m_ID="&vid
  37. rs.open sqlstr,conn,1,1
  38. If rs.eof AND rs.bof Then
  39. Response.Redirect "resp.asp?cmd=msg_idmiss"
  40. ElseIf rs("m_from")<>u_name Then
  41. Response.Redirect "resp.asp?cmd=msg_sendor"
  42. End If
  43. '判断身份或者性别
  44. IF rs("power")>1 THEN
  45. icn_sex="img/icn_adm1.gif"
  46. ELSEIF rs("sex")=True THEN
  47. icn_sex="img/icn_gg.gif"
  48. ELSE
  49. icn_sex="img/icn_mm.gif"
  50. END IF
  51. '总管判断
  52. if rs("name")=DEF_sysadm then
  53. icn_sex="img/icn_admsys.gif"
  54. end if
  55. %>
  56. <table align="center" width="100%" height="25" border="0" cellspacing="0" cellpadding="0" class="rdd">
  57. <tr>
  58. <td width="50%" height="100%" class="rdr"><b>接收人:</b><img src="<% =icn_sex %>" border="0" align="absmiddle">&nbsp;<a href="viewinfo.asp?id=<% =rs("ID") %>" title="点击查看该同学详细资料!"><% =rs("m_to") %></a></td>
  59. <td width="50%" height="100%"><b>发送日期:</b><% =rs("m_postdate") %></td>
  60. </tr>
  61. </table>
  62. <table align="center" width="100%" height="25" border="0" cellspacing="0" cellpadding="0" class="intbl">
  63. <tr>
  64. <td width="100%" height="100%" class="rdd"><b>消息标题:</b><% =unhtml(rs("m_head")) %></td>
  65. </tr>
  66. </table>
  67. <table align="center" width="100%" height="25" border="0" cellspacing="0" cellpadding="0" class="intbl">
  68. <tr>
  69. <td width="100%" height="100%" valign="top" class="rde"><b>消息内容:</b>
  70. <br><% =UBB_Code(rs("m_content")) %>
  71. </td>
  72. </tr>
  73. </table>
  74. <%
  75. rs.close
  76. %>
  77. </td>
  78. </tr>
  79. </table>
  80. <!--插入在线统计-->
  81. <!--#include file="in_online.asp"-->
  82. <!--插入网站置底-->
  83. <!--#include file="in_bottom.asp"-->
  84. </body>
  85. </html>