pic.asp 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <!--#include file="Conn.asp"--><%Checklogin("")%><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>管理区域</title>
  6. <link rel="stylesheet" href="css/common.css" type="text/css" />
  7. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  8. <script type="text/javascript" src="js/js.js"></script>
  9. </head>
  10. <body>
  11. <div id="man_zone">
  12. <%
  13. Act = Request.QueryString("act")
  14. If Act="postchk" Then
  15. cpid=Request.QueryString("cpid")
  16. Keys = Server.UrlEnCode(Request.QueryString("Keys"))
  17. Ord = Server.UrlEnCode(Request.QueryString("Ord"))
  18. Page = Request.QueryString("Page")
  19. chkact = Request.Form("chkact")
  20. Set Rsd=Server.CreateObject("ADODB.RecordSet")
  21. Set fs=Server.CreateObject("Scripting.FileSystemObject")
  22. For i = 1 To Request.Form("chkbox").Count
  23. Response.Write Request.Form("chkbox")(i)
  24. Rsd.Open "Select picurl From pic Where id="&Request.Form("chkbox")(i),Conn,1,3
  25. If Not Rsd.Bof And Not Rsd.Eof Then
  26. If Left(Rsd(0),8)="/System/" Then
  27. delfile = Server.MapPath(Rsd(0))
  28. If fs.FileExists(delfile) Then
  29. fs.DeleteFile Server.MapPath(Rsd(0)),True
  30. End If
  31. End If
  32. Rsd.Delete
  33. End If
  34. Rsd.Close
  35. Next
  36. Set fs=Nothing:Set Rsd=Nothing:Conn.Close:Set Conn=Nothing
  37. Response.Redirect "?Keys="&Keys&"&Ord="&Ord&"&Page="&Page&"&cpid="&cpid
  38. End If 'End postchk
  39. cpid=Request.QueryString("cpid")
  40. Page = Request.QueryString("Page")
  41. Keys=Server.UrlEnCode(Request.QueryString("Keys"))
  42. Ord=Server.UrlEnCode(Request.QueryString("Ord"))
  43. If cpid="" Or Not IsNumeric(cpid) Then Response.Redirect "protector.asp"
  44. Set Rs=Server.CreateObject("ADODB.RecordSet")
  45. Rs.Open "Select id,picurl From pic Where cpid="&cpid&" Order By Id Desc",Conn,1,1
  46. %>
  47. <form method="post" name="form2" style="padding:5px;" action="picupload.asp?cpid=<%=cpid%>&Page=<%=Page%>&Keys=<%=Keys%>&Ord=<%=Ord%>" enctype="multipart/form-data" onsubmit="if(this.filedata.value==''){return false;}" style="margin-bottom:10px;">
  48. <input type="file" name="filedata" id="filedata" style="float:left;height:20px;border:1px solid #DBE6E3;background:#FFF;width:300px;margin-right:20px;" />
  49. <input type="submit" value="上传" class="btn1" style="margin-left:10px" />
  50. </form>
  51. <form id="form1" method="post" action="?act=postchk&cpid=<%=cpid%>&Page=<%=Page%>&Keys=<%=Keys%>&Ord=<%=Ord%>" onSubmit="return false" />
  52. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  53. <thead>
  54. <tr>
  55. <th width="4%"><input type="checkbox" name="chkall" id="chkall" onClick="chkboxall(this,'chkbox')" /></th>
  56. <th width="6%">序号</th>
  57. <th width="35%">缩略图</th>
  58. </tr>
  59. </thead>
  60. <tbody>
  61. <%
  62. If Not Rs.Bof And Not Rs.Eof Then
  63. Tempnum=0
  64. Do While Not Rs.Bof And Not Rs.Eof
  65. TempNum=TempNum+1
  66. %>
  67. <tr onMouseOver="this.style.background='#F7FCFF'" onMouseOut="this.style.background='#FFFFFF'">
  68. <td align="center"><input type="checkbox" name="chkbox" value="<%=Rs(0)%>" /></td>
  69. <td align="center"><%=TempNum%></td>
  70. <td align="center"><img src="<%=Rs(1)%>" height="50" /></td>
  71. </tr>
  72. <%
  73. Rs.MoveNext
  74. Loop
  75. Else
  76. %>
  77. <tr>
  78. <td align="center" colspan="4">当前还没有图片</td>
  79. </tr>
  80. <%
  81. End If
  82. %>
  83. </tbody>
  84. <tfoot>
  85. <tr>
  86. <td colspan="4">
  87. <div class="postchkbox">
  88. <select id="chkact" name="chkact">
  89. <option value="-1">删除</option>
  90. </select>
  91. <input type="button" value="执行" onClick="postchk(1)" class="btn1" />
  92. <input type="button" value="返回" onClick="location.href='product.asp?Keys=<%=Keys%>&Ord=<%=Ord%>&Page=<%=Page%>&act=edit&id=<%=cpid%>'" class="btn1" />
  93. </div>
  94. </td>
  95. </tr>
  96. </tfoot>
  97. </table>
  98. </form>
  99. <%Rs.Close:Set Rs=Nothing:Conn.Close:Set Conn=Nothing%>
  100. </div>
  101. </body>
  102. </html>