EditNewsTellDeal.asp
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:2k
源码类别:

数据库编程

开发平台:

ASP/ASPX

  1. <% Option Explicit %>
  2. <!--#include file="../../FS_Inc/Const.asp" -->
  3. <!--#include file="../../FS_InterFace/MF_Function.asp" -->
  4. <!--#include file="../../FS_InterFace/ns_Function.asp" -->
  5. <!--#include file="../../FS_Inc/Function.asp" -->
  6. <!--#include file="../../FS_Inc/Func_page.asp" -->
  7. <%
  8. response.buffer=true
  9. Response.CacheControl = "no-cache"
  10. Dim Conn,User_Conn
  11. MF_Default_Conn
  12. 'session判断
  13. MF_Session_TF 
  14. if not MF_Check_Pop_TF("WS002") then Err_Show
  15. Dim AddUser,Topic,Content,Person,EditRs,ID,strShowErr
  16. Set EditRs=Server.createobject(G_FS_RS)
  17. if NoSqlHack(Request.querystring("Act"))="Edit" then
  18. ID=Request.form("ID")
  19. AddUser=NoHtmlHackInput(Request.form("AddUser"))
  20. Topic=NoHtmlHackInput(Request.form("Topic"))
  21. Content=NoHtmlHackInput(trim(Replace(Request.form("Content"),vbcrlf,"<br>")))
  22. Person=NoHtmlHackInput(request.form("Person"))
  23. if AddUser="" then 
  24. strShowErr = "<li>用户名为空,请检楂用户登陆是否已过期!</li>"
  25. Response.Redirect("../error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"")
  26. Response.end
  27. end if
  28. if Topic="" then
  29. strShowErr = "<li>公告标题不能为空!</li>"
  30. Response.Redirect("../error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"")
  31. Response.end
  32. end if
  33. if Content="" then
  34. strShowErr = "<li>公告内容不能为空!</li>"
  35. Response.Redirect("../error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"")
  36. Response.end
  37. end if
  38. EditRs.open "Select Topic,Content,Person,AddUser,AddDate From FS_WS_NewsTell where ID="&ID&"",Conn,1,3
  39. if not EditRs.eof then
  40. EditRs("Topic")=Topic
  41. EditRs("Content")=Content
  42. EditRs("Person")=Person
  43. EditRs("AddUser")=AddUser
  44. EditRs.update
  45. end if
  46. Set EditRs=nothing
  47. strShowErr = "<li>修改成功</li>"
  48. Response.Redirect("../Success.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=BBS/NewTell.asp")
  49. Response.end
  50. end if
  51. %>