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

手机WAP编程

开发平台:

ASP/ASPX

  1. <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
  2. <html>
  3. <!--#include file="admin_sb.asp"-->
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. </head>
  7. <body bgcolor="#fcefff">
  8. <%
  9. id=request.form("id")
  10. nam=request.form("nam")
  11. mm=request.form("mm")
  12. if mm="" then mm="0"
  13. idi=request.form("idi")
  14. txt=request.form("txt")
  15. brr=request.form("brr")
  16. xx=request.form("xx")
  17. dy=request.form("dy")
  18. did=request.form("did")
  19. url=request.form("url")
  20. yc=request.form("yc")
  21. lx=request.form("lx")
  22. if lx="" then lx="0"
  23. did=request.form("did")
  24. '----识别错误并跳转-----
  25. if nam="" then 
  26. Response.Write ("<script>alert('标题不能为空');history.back();</script>")
  27. elseif idi="" then 
  28. Response.Write ("<script>alert('排序不能为空');history.back();</script>")
  29. elseif txt="" then 
  30. Response.Write ("<script>alert('内容不能为空');history.back();</script>")
  31. end if
  32. '---开始增加----
  33. set rs=Server.CreateObject("ADODB.Recordset")
  34. rspl="select * from wap_lm where id="&id
  35. rs.open rspl,conn,1,2
  36. if not rs.eof then
  37. if nam<>"" then rs("nxn")=nam
  38. if did<>"" then rs("did")=did
  39. if idi<>"" then rs("pid")=idi
  40. if txt<>"" then rs("txt")=txt
  41. if dy<>"" then rs("dy")=dy
  42. if brr<>"" then rs("brr")=brr
  43. if url<>"" then rs("url")=url
  44. if mm<>"" then rs("mm")=mm
  45. if yc<>"" then rs("yc")=yc
  46. rs.update()
  47. end if
  48. '---关闭数据----
  49. rs.close
  50. set rs=nothing
  51. Response.Write ("<script>alert('编辑“"&nam&"”成功');history.back();</script>")
  52. %>
  53. <script language="javascript">
  54. <!--
  55. function clock(){i=i-1
  56. document.title="本窗口将在"+i+"秒后自动关闭!";
  57. if(i>0)setTimeout("clock();",1000);
  58. else self.close();}
  59. var i=1
  60. clock();
  61. //-->
  62. </script>
  63. </table>
  64. </body>
  65. </html>