Del_Message.Asp
上传用户:qfkgdy
上传日期:2020-06-18
资源大小:1888k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

ASP/ASPX

  1. <!--#include file="../wml.ini"-->
  2. <%  
  3. call wmlbegin("删除留言","wrap")
  4. go=request.QueryString("go")
  5. s=request.QueryString("s")
  6. id=cint(request.QueryString("id"))
  7. if go="" Then
  8. if session("AdminName")<>"" then s=2
  9. if session("MessagePass")=id then s=1
  10.   call wmlwrite("<b>删除后将无法恢复,你确定要删除吗?",true)
  11.   call wmllink("Del_Message.Asp?id=" & id & "&amp;go=" & s & "","Yes",false)
  12.   call wmlwrite("|",false)
  13.   call wmllink("View.asp?id=" & id & "","No",true)
  14.   call wmlwrite("</b>",false)
  15.   end if
  16. if go="1" Then
  17. if session("MessagePass")=id then
  18.   Set Rs = Server.CreateObject("Adodb.Recordset")
  19.   Sql = "select * from Message WHERE id="&id
  20.   Rs.Open Sql,conn,1,3
  21.   if not (rs.bof and rs.eof)  then 
  22.   rs.Delete
  23.   end if
  24.   rs.Close
  25.   Set rs = Nothing
  26.   call wmlwrite("<b>删除成功!</b>",true)
  27.   else
  28.   call wmlwrite("<b>请不要恶意删除留言!</b>",true)
  29.   end if
  30.   end if
  31. if go="2" Then
  32. if session("AdminName")<>"" then
  33.   Set Rs = Server.CreateObject("Adodb.Recordset")
  34.   Sql = "select * from Message WHERE id="&id
  35.   Rs.Open Sql,conn,1,3
  36.   if not (rs.bof and rs.eof)  then 
  37.   rs.Delete
  38.   end if
  39.   rs.Close
  40.   Set rs = Nothing
  41.   call wmlwrite("<b>删除成功!</b>",true)
  42.   else
  43.   call wmlwrite("<b>请不要恶意删除留言!</b>",true)
  44.   end if
  45.   end if
  46. call wap.navs("留言本,index.asp|预览留言,View.Asp?id=" & id & "|管理留言,Admin_Message.Asp?Go=1&amp;id=" & id & "|删除留言,")
  47.   call wmlend
  48. %>