ROOM_addcl.asp
上传用户:sking1122
上传日期:2020-09-24
资源大小:1005k
文件大小:2k
源码类别:

手机WAP编程

开发平台:

ASP/ASPX

  1. <!--#include file="conn.inc"-->
  2. <!--#include file="cnscucsb.asp"--><%
  3. '====================================================================
  4. ' 请你保留这段说明,这并不会影响你的速度.   电脑交流:http://www.cnscu.cn
  5. ' 程序制作:横云   掌上校园收倾心整理收集于互联网,感谢你的支持!
  6. ' 升级时间: 2008-2-5   主页地址:HTTP://wap.cnscu.cn
  7. ' E-Mail: cnscu@126.com    客服QQ:554904632 QQ群:30493504 QQ群2:46659883
  8. '====================================================================
  9. %> <%
  10. ltid=usb(request("ltid"))
  11. idp=ubb(request("idp"))
  12. lttxt=usb(request("lttxt"))
  13. djjg=usb(request("djjg"))
  14. if djjg="" then djjg="0"
  15. ldid=usb(request("ldid"))
  16. if ldid="" then ldid="0"
  17. dj=usb(request("dj"))
  18. t=usb(request("t"))
  19. set rsl=Server.CreateObject("ADODB.Recordset")
  20. rspll="select * from [ltid] where cstr(fnr)='"&lttxt&"' and cstr(fid)='"&myid&"'"
  21. rsl.open rspll,conn,1,2
  22. if not rsl.eof then
  23. response.redirect "ROOM_add.asp?cw=3&cnscu="&cnscu&"&ltid="&ltid&"&dj="&dj&""
  24. end if
  25. rsl.close
  26. set rsl=nothing
  27. %>
  28. <%
  29. '----识别错误并跳转-----
  30. if lttxt="" then response.redirect "ROOM_add.asp?cw=2&cnscu="&cnscu&"&ltid="&ltid&"&dj="&dj&""
  31. if myid="" then response.redirect "ROOM_add.asp?cw=4&cnscu="&cnscu&"&ltid="&ltid&"&dj="&dj&""
  32. '---开始增加----
  33. set rs=Server.CreateObject("ADODB.Recordset")
  34. rspl="select * from [ltid] order by id desc"
  35. rs.open rspl,conn,1,2
  36. rs.addnew
  37. if t="" and idp="" then rs("fnr")="说:"&lttxt&""
  38. if t="" and idp<>"" then rs("fnr")="对"&idp&"说:"&lttxt&""
  39. if t<>"" and idp="" then rs("fnr")="说:(img)"&t&"(/img)"&lttxt&""
  40. if t<>"" and idp<>"" then rs("fnr")="对"&idp&"说:(img)"&t&"(/img)"&lttxt&""
  41. if myni<>"" then rs("fnc")=myni
  42. if myid<>"" then rs("fid")=myid
  43. rs("ltid")=ltid
  44. rs.update
  45. response.redirect "ROOM.asp?cnscu="&cnscu&"&ltid="&ltid&"&dj="&dj&""
  46. '---关闭数据----
  47. rs.close
  48. set rs=nothing
  49. %>