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

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 Info",conn,1,3
  39. rs.addnew
  40. rs("title")=UPLOAD.FORM("title")
  41. rs("content")=UPLOAD.FORM("content")
  42. rs("wz")=UPLOAD.FORM("wz")
  43. rs("postdate")=DATE()
  44. if file.FileSize>0 then
  45. file.saveAs Server.mappath("../../upload/"&rs("id")&getfilename(file.FileName))
  46. rs("pic")=rs("id")&getfilename(file.FileName)
  47. end if 
  48. rs.Update
  49. call showmsg("系统提示:信息添加成功!","list.asp")
  50. End Function
  51. '-----------------------------
  52. Function Edit
  53. if UPLOAD.FORM("title")="" then
  54. call showerr("系统提示:标题不能为空!")
  55. end if
  56. if UPLOAD.FORM("content")="" then
  57. call showerr("系统提示:内容不能为空!")
  58. end if
  59. set rs=server.createobject("adodb.recordset")
  60. rs.open "select * from Info where id="&UPLOAD.FORM("id"),conn,1,3
  61. rs("title")=UPLOAD.FORM("title")
  62. rs("content")=UPLOAD.FORM("content")
  63. rs("wz")=UPLOAD.FORM("wz")
  64. rs("postdate")=DATE()
  65. DIM FILE
  66. set file=upload.file("file")
  67. if file.FileSize>0 then
  68. IF GETFILENAME(RS("pic"))<>GETFILENAME(FILE.FILENAME) THEN
  69. CALL DoDelFile("../../upload/"&RS("pic"))
  70. END IF
  71. file.saveAs Server.mappath("../../upload/"&rs("id")&getfilename(file.FileName))
  72. rs("pic")=rs("id")&getfilename(file.FileName)
  73. end if 
  74. rs.Update
  75. call showmsg("系统提示:信息修改成功!","list.asp")
  76. End Function
  77. function GetExtendName(FileName)
  78. dim ExtName
  79. ExtName = LCase(FileName)
  80. ExtName = right(ExtName,3)
  81. ExtName = right(ExtName,3-Instr(ExtName,"."))
  82. GetExtendName = ExtName
  83. end function
  84. '-----------------------------
  85. call COCLS
  86. %>