sys_logo_deal.asp
上传用户:stone001
上传日期:2016-10-28
资源大小:685k
文件大小:3k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

ASP/ASPX

  1. <!--插入html头部分以及数据库接口-->
  2. <!--#include file="in_conn.asp"-->
  3. <!--#include file="UpLoadClass.asp"-->
  4. <body>
  5. <!--插入网站置顶-->
  6. <%
  7. Server.ScriptTimeOut=5000
  8. if u_name="" then
  9. Response.Redirect "log_err.asp"
  10. else
  11. %>
  12. <!--#include file="in_topmb.asp"-->
  13. <% end if %>
  14. <%
  15. if u_power<2 OR u_name<>DEF_sysadm then
  16. Response.Redirect "resp.asp?cmd=adm_bigpower"
  17. end if
  18. %>
  19. <%
  20. dim request2 
  21. '建立上传对象
  22. set request2=New UpLoadClass
  23. '使用手动方式保存
  24. request2.AutoSave=2
  25. request2.SavePath="img/logo/"
  26. request2.FileType="gif/jpg"
  27. '打开对象
  28. request2.Open()
  29. %>
  30. <table align="center" width="700" height="25" border="0" cellspacing="0" cellpadding="0" class="rdbar"><tr>
  31. <td width="100%" height="100%">
  32. &nbsp;<a href="index.asp">[首页]</a>-<a href="sys.asp">后台维护</a>-<font class="ft1">上传班级LOGO</font>
  33. </td>
  34. </tr></table>
  35. <table align="center" width="700" height="101" border="0" cellspacing="0" cellpadding="6" class="rdd">
  36. <tr>
  37. <td width="150" valign="top" class="rdk2">
  38. <!--插入左部分-->
  39. <!--#include file="in_sys_left.asp"-->
  40. </td>
  41. <td valign="top"><br>
  42. <%
  43. '保存文件
  44. request2.MaxSize=102400
  45. viiii=request2.Save("strLogo",0)
  46. select case request2.Form("strLogo_Err")
  47. case -1:
  48. response.write "没有文件上传<br>"&"<a href='javascript:history.go(-1);'>[点击这里<Font color=red>返回修改</Font>]</a>"
  49. case 0:
  50. vlogofile=Request2.SavePath&Request2.Form("strLogo")
  51. sqlstr="SELECT logofile FROM tblsys"
  52. rs.open sqlstr,conn,1,2
  53. if Left(rs("logofile"),9)="img/logo/" then
  54. dim fpath
  55. dim fso1
  56. fpath=server.MapPath(rs("logofile"))
  57. set fso1=Server.CreateObject("Scripting.FileSystemObject")
  58. if fso1.FileExists(fpath) then
  59. fso1.DeleteFile fpath,True
  60. end if
  61. set fso1=nothing
  62. end if
  63. rs("logofile")=vlogofile
  64. rs.update
  65. rs.close
  66. set request2=Nothing
  67. Response.Redirect "rego.asp?cmd=skin_ok"
  68. case 1:
  69. response.write "文件太大,拒绝上传<br>"&"<a href='javascript:history.go(-1);'>[点击这里<Font color=red>返回修改</Font>]</a>"
  70. case 2:
  71. response.write "文件格式不对,拒绝上传<br>"&"<a href='javascript:history.go(-1);'>[点击这里<Font color=red>返回修改</Font>]</a>"
  72. case 3:
  73. response.write "文件太大且格式不对,拒绝上传<br>"&"<a href='javascript:history.go(-1);'>[点击这里<Font color=red>返回修改</Font>]</a>"
  74. end select
  75. set request2=Nothing
  76. %>
  77. </td>
  78. </tr>
  79. </table>
  80. <!--插入在线统计-->
  81. <!--#include file="in_online.asp"-->
  82. <!--插入网站置底-->
  83. <!--#include file="in_bottom.asp"-->
  84. </body>
  85. </html>