editbbs.asp
上传用户:qyswxdl
上传日期:2013-06-01
资源大小:1373k
文件大小:2k
源码类别:

家庭/个人应用

开发平台:

ASP/ASPX

  1. <!--#include file="articleconn.asp"-->
  2. <!--#include file="security.asp"-->
  3. <%
  4. dim sql
  5. dim rs
  6. sql="select title,review from learning where articleid="&clng(request("id"))
  7. set rs=server.createobject("adodb.recordset")
  8. if request("B1")="" then
  9. rs.open sql,conn,1,1
  10. elseif request("B1")<>"" then
  11. rs.open sql,conn,1,3
  12. rs("review")=request("bbs")
  13. rs.update
  14. end if
  15.                 %>
  16. <html><!--#include file="../checkpost.asp"-->
  17. <head>
  18. <meta http-equiv="Content-Language" content="en-us">
  19. <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
  20. <meta name="ProgId" content="FrontPage.Editor.Document">
  21. <link rel="stylesheet" href="inc/Admin_STYLE.CSS" type="text/css">
  22. <title>相关平论</title>
  23. <meta http-equiv="Content-Type" content="text/html; charset=gb2312"><style type="text/css">
  24. <!--
  25. body {
  26. margin-left: 0px;
  27. margin-right: 0px;
  28. }
  29. .样式4 {
  30. color: #FFFFFF;
  31. font-weight: bold;
  32. }
  33. -->
  34. </style></head>
  35. <body ">
  36. <p> </p>
  37. <div align="center">
  38.   <center>
  39.   <table width="520" height="427" border="0" cellpadding="2" cellspacing="0" id="AutoNumber1" style="border-collapse: collapse; border-left: .75pt solid teal; border-right: .75pt solid teal; border-top: 1.5pt solid teal; border-bottom: 1.5pt solid teal; background-color: white" fpstyle="24,011111100">
  40.     <tr>
  41.       <td bgcolor="#429AEF""><div align="center" class="样式4"><span lang="zh-cn"><%=rs("title")%>的相关平论</span></div></td>
  42.     </tr>
  43.     <tr>
  44.       <td width="459" height="397" bgcolor="E1F4EE" style="color: black; border-style: none">
  45.       <form method="POST" action="editbbs.asp?id=<%=clng(request("id"))%>">
  46.         <p><textarea rows="20" name="bbs" cols="76"><%=rs("review")%></textarea><br>
  47.         <input type="submit" value="提交" name="B1">
  48.         <input type="reset" value="重置" name="B2"></p>
  49.         <p></p>
  50.       </form>      </td>
  51.     </tr>
  52.   </table>
  53.   </center>
  54. </div>
  55. <%
  56. rs.close
  57. set rs=nothing
  58. conn.close
  59. set conn=nothing
  60. %>
  61. </body>
  62. </html>
  63. </body>
  64. </html>