List_Save.asp
上传用户:xxtaishan
上传日期:2022-01-02
资源大小:4063k
文件大小:2k
源码类别:

IP电话/视频会议

开发平台:

ASP/ASPX

  1. <!--#include file="../../inc/conn.asp"-->
  2. <!--#include file="../../inc/FUNC.asp" -->
  3. <!--#include file="../../inc/upload_5xsoft.inc" -->
  4. <%
  5. '-----------------------------
  6. Dim rs
  7. Dim sql
  8. '-----------------------------
  9. DIM UPLOAD
  10. SET UPLOAD=NEW UPLOAD_5XSOFT
  11. If UPLOAD.FORM("operation")="add" Then
  12. call Add
  13. elseif UPLOAD.FORM("operation")="edit" Then
  14. call Edit
  15. ELSE
  16. call showerr("系统提示:操作无效!")
  17. end if
  18. '-----------------------------
  19. Function Add
  20. if UPLOAD.FORM("title")="" then
  21. call showerr("系统提示:标题不能为空!")
  22. end if
  23. DIM FILE
  24. set file=upload.file("file")
  25. if Instr(".doc.xls.ppt.rar.exe",GetExtendName(file.FileName)) then
  26. TypeFlag = 1        '文件为允许的类型
  27.   else
  28. TypeFlag = 0 '文件为不允许的类型
  29.   Response.write "不支持您所上传的文件类型:"
  30. Response.write GetExtendName(file.FileName)
  31. Response.write "<br>"
  32.          response.end
  33. end if
  34. 'if file.FileSize<=0 then
  35. 'call showerr("系统提示:请上传产品图片!")
  36. 'end if
  37. set rs=server.createobject("adodb.recordset")
  38. rs.open "select * from gslr ",conn,1,3
  39. rs.addnew
  40. rs("title")=UPLOAD.FORM("title")
  41. rs("content")=UPLOAD.FORM("content")
  42. rs("postdate")=DATE()
  43. rs.Update
  44. call showmsg("系统提示:信息添加成功!","list.asp")
  45. End Function
  46. '-----------------------------
  47. Function Edit
  48. if UPLOAD.FORM("title")="" then
  49. call showerr("系统提示:标题不能为空!")
  50. end if
  51. if UPLOAD.FORM("content")="" then
  52. call showerr("系统提示:内容不能为空!")
  53. end if
  54. set rs=server.createobject("adodb.recordset")
  55. rs.open "select * from gslr where id="&UPLOAD.FORM("id"),conn,1,3
  56. rs("title")=UPLOAD.FORM("title")
  57. rs("content")=UPLOAD.FORM("content")
  58. rs("postdate")=DATE()
  59. rs.Update
  60. call showmsg("系统提示:信息修改成功!","list.asp")
  61. End Function
  62. function GetExtendName(FileName)
  63. dim ExtName
  64. ExtName = LCase(FileName)
  65. ExtName = right(ExtName,3)
  66. ExtName = right(ExtName,3-Instr(ExtName,"."))
  67. GetExtendName = ExtName
  68. end function
  69. '-----------------------------
  70. call COCLS
  71. %>