qudao.asp 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  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. <link rel="stylesheet" href="css/jquery.galpop.css" type="text/css" />
  8. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  9. <script type="text/javascript" src="js/js.js"></script>
  10. <script type="text/javascript" src="xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  11. <script type="text/javascript" src="js/jquery.galpop.min.js"></script>
  12. </head>
  13. <body>
  14. <div id="man_zone">
  15. <%
  16. Act = Request.QueryString("act")
  17. If act = "save" Then
  18. Set Rs = Server.CreateObject("ADODB.RecordSet")
  19. isedit = False
  20. id = Request.Form("id")
  21. If id<>"" And IsNumeric(id) Then isedit = True
  22. ch_name=TextEnCode(Request.Form("ch_name"))
  23. If isedit Then
  24. Rs.Open "Select * From qudao Where id="& id,Conn,1,3
  25. If Rs.Bof And Rs.Eof Then
  26. Rs.AddNew
  27. End If
  28. Rs("ch_name")=ch_name
  29. Rs.Update:Rs.Close:Set Rs=Nothing:Conn.Close:Set Conn=Nothing
  30. Page = Request.QueryString("Page")
  31. Keys=Server.UrlEnCode(Request.QueryString("Keys"))
  32. Ord=Server.UrlEnCode(Request.QueryString("Ord"))
  33. Response.Redirect "?keys="&Keys&"&Ord="&Ord&"&Page="&Page
  34. Else
  35. Rs.Open "qudao",Conn,1,3
  36. Rs.AddNew
  37. Rs("ch_name")=ch_name
  38. Rs.Update:Rs.Close:Set Rs=Nothing:Conn.Close:Set Conn=Nothing
  39. Response.Redirect "?"
  40. End If
  41. Conn.Close:Set Conn=Nothing
  42. Response.End
  43. End If 'end save
  44. If Act = "add" Or Act = "edit" Then
  45. id = Request.QueryString("id")
  46. isedit = False
  47. If id<>"" And IsNumeric(id) Then isedit=True
  48. If isedit Then
  49. Set Rs = Server.CreateObject("ADODB.RecordSet")
  50. Rs.Open "Select * From qudao Where id="&id,Conn,1,1
  51. If Not Rs.Bof And Not Rs.Eof Then
  52. ch_name=TextUnCode(Rs("ch_name"))
  53. Else
  54. isedit = False
  55. End If
  56. Rs.Close:Set Rs=Nothing
  57. End If
  58. Page = Request.QueryString("Page")
  59. Keys=Server.UrlEnCode(Request.QueryString("Keys"))
  60. Ord=Server.UrlEnCode(Request.QueryString("Ord"))
  61. hrefstr = "?keys="&Keys&"&Ord="&Ord&"&Page="&Page
  62. %>
  63. <form name="form1" method="post" action="<%=hrefstr%>&act=save">
  64. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  65. <tbody>
  66. <tr>
  67. <th width="8%">来源</th>
  68. <td><input type="text" id="ch_name" name="ch_name" value="<%=ch_name%>" class="txt1" /><input type="hidden" name="id" value="<%=id%>" /></td>
  69. </tr>
  70. <tr>
  71. <th></th>
  72. <td><input type="submit" name="save" id="save" value="确定" class="btn1" /> <input type="reset" name="save" id="save" value="重置" class="btn1" /> <input type="button" value="返回" class="btn1" onClick="location.href='<%=hrefstr%>'" /></td>
  73. </tr>
  74. </tbody>
  75. </table>
  76. </form>
  77. </div>
  78. </body>
  79. </html>
  80. <%
  81. Response.End
  82. End If 'End add
  83. If Act="postchk" Then
  84. Keys = Server.UrlEnCode(Request.QueryString("Keys"))
  85. Ord = Server.UrlEnCode(Request.QueryString("Ord"))
  86. Page = Request.QueryString("Page")
  87. chkact = Request.Form("chkact")
  88. SqlStr = ""
  89. For i = 1 To Request.Form("chkbox").Count
  90. If SqlStr<>"" Then
  91. SqlStr = SqlStr & " Or id="&Request.Form("chkbox")(i)
  92. Else
  93. SqlStr = " Where id="&Request.Form("chkbox")(i)
  94. End If
  95. Next
  96. SqlStr = "Delete From qudao"&SqlStr
  97. Conn.Execute(SqlStr):Conn.Close:Set Conn=Nothing
  98. Response.Redirect "?Keys="&Keys&"&Ord="&Ord&"&Page="&Page
  99. Response.End
  100. End If 'End postchk
  101. Keys=Request.QueryString("Keys")
  102. Keyscode=TextEnCode(Keys)
  103. Ord=Request.QueryString("Ord")
  104. Page = Request.QueryString("Page")
  105. If Ord<>"" Then
  106. OrdStr=Ord&","
  107. Else
  108. OrdStr=""
  109. End If
  110. Set Rs=Server.CreateObject("ADODB.RecordSet")
  111. Rs.Open "Select * From qudao Where ch_name like '%"&Keyscode&"%' Order By id Desc",Conn,1,1
  112. Keys=Server.UrlEnCode(Keys)
  113. Ord=Server.UrlEnCode(Ord)
  114. hrefstr = "?keys="&Keys
  115. %>
  116. <form id="form1" method="post" action="?act=postchk&Keys=<%=keys%>&Ord=<%=Ord%>&Page=<%=Page%>" onSubmit="return false" />
  117. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  118. <thead>
  119. <tr>
  120. <th width="4%"><input type="checkbox" name="chkall" id="chkall" onClick="chkboxall(this,'chkbox')" /></th>
  121. <th width="6%">序号</th>
  122. <th width="60%">渠道来源</th>
  123. <th width="30%">操作</th>
  124. </tr>
  125. </thead>
  126. <tbody>
  127. <%
  128. If Not Rs.Bof And Not Rs.Eof Then
  129. Rs.PageSize = 10
  130. If Page = "" Then Page = 1
  131. If Page = "end" Then Page = Rs.PageCount
  132. If Not IsNumeric(Page) Or Page < 1 Then Page = 1
  133. Page = Cint(Page)
  134. If Page > Rs.PageCount Then Page = Rs.PageCount
  135. Rs.AbsolutePage = Page
  136. TempNum = Rs.PageSize * (Page - 1)
  137. Set Rs1=Server.CreateObject("ADODB.RecordSet")
  138. For i=1 To Rs.PageSize
  139. If Rs.Bof Or Rs.Eof Then Exit For
  140. TempNum=TempNum+1:classid=Rs(1)
  141. %>
  142. <tr onMouseOver="this.style.background='#F7FCFF'" onMouseOut="this.style.background='#FFFFFF'">
  143. <td align="center"><input type="checkbox" name="chkbox" value="<%=Rs(0)%>" /></td>
  144. <td align="center"><%=TempNum%></td>
  145. <td align="center"><%=Rs("ch_name")%></td>
  146. <td align="center"><a href="?Keys=<%=keys%>&Ord=<%=Ord%>&Page=<%=Page%>&act=edit&id=<%=Rs(0)%>" class="ico_edit ico">修改</a></td>
  147. </tr>
  148. <%
  149. Rs.MoveNext
  150. Next
  151. Else
  152. If Keys="" Then
  153. %>
  154. <tr>
  155. <td align="center" colspan="4">Sorry,当前暂无信息</td>
  156. </tr>
  157. <%
  158. Else
  159. %>
  160. <tr>
  161. <td align="center" colspan="4"><a href="?">Sorry,没有找到“<%=Keyscode%>”相关的信息,点击返回</a></td>
  162. </tr>
  163. <%
  164. End If
  165. End If
  166. %>
  167. </tbody>
  168. <tfoot>
  169. <tr>
  170. <td colspan="4">
  171. <div class="showpagebox">
  172. <%
  173. If Rs.PageCount > 1 Then
  174. PageName="?Keys="&Keys&"&Ord="&Ord&"&"
  175. Pagelen=3
  176. If Page>1 Then
  177. Response.Write "<a href="""&PageName&"Page=1"">首页</a>"
  178. Response.Write "<a href="""&PageName&"Page="&Page-1&""">上一页</a>"
  179. End If
  180. If Pagelen*2+1 >= Rs.PageCount Then
  181. StartPage=1:EndPage=Rs.PageCount
  182. Else
  183. If Page<=Pagelen+1 Then
  184. StartPage=1
  185. EndPage=Pagelen*2+1
  186. Else
  187. StartPage=Page-Pagelen
  188. EndPage=Page+Pagelen
  189. End If
  190. If Page+Pagelen>Rs.PageCount Then StartPage=Rs.PageCount-Pagelen*2:EndPage=Rs.PageCount
  191. End If
  192. For i = StartPage To EndPage
  193. If i = Page Then
  194. Response.Write "<a class=""current"">"&i&"</a>"
  195. Else
  196. Response.Write "<a href="""&PageName&"Page="&i&""">"&i&"</a>"
  197. End If
  198. Next
  199. If Page<Rs.PageCount Then
  200. If Rs.PageCount - Page > Pagelen Then Response.Write "<a href="""&PageName&"Page="&Rs.PageCount&""">..."&Rs.PageCount&"</a>"
  201. Response.Write "<a href="""&PageName&"Page="&Page+1&""">下一页</a>"
  202. Response.Write "<a href="""&PageName&"Page="&Rs.PageCount&""">尾页</a>"
  203. End If
  204. Response.Write "<input type=""text"" id=""Pagego"" value="""&Page&""" onFocus=""if(this.value == '"&Page&"'){this.value='';}"" onBlur=""if(this.value == ''){this.value='"&Page&"';}"" onKeyUp=""this.value=this.value.replace(/\D/g,'')"" onKeyDown=""if(event.keyCode==13){location.href='"&PageName&"Page='+document.getElementById('Pagego').value}"" />"
  205. End If
  206. %> </div>
  207. <div class="searchbox"><input type="text" id="keys" value="<%If Keyscode="" Then Response.Write "请输入搜索关键词" Else Response.Write Keyscode%>" onFocus="if(this.value == '<%If Keyscode="" Then Response.Write "请输入搜索关键词" Else Response.Write Keyscode%>'){this.value='';}" onBlur="if(this.value == ''){this.value='<%If Keyscode="" Then Response.Write "请输入搜索关键词" Else Response.Write Keyscode%>';}" onKeyDown="if(event.keyCode==13){location.href='?Keys='+escape(document.getElementById('keys').value)}" /><input type="button" id="searchgo" value="go" onClick="location.href='?Keys='+escape(document.getElementById('keys').value)" /></div>
  208. <div class="postchkbox">
  209. <select id="chkact" name="chkact">
  210. <option value="1">请选择</option>
  211. <option value="-1">删除</option>
  212. </select>
  213. <input type="button" value="执行" onClick="postchk(1)" class="btn1" />
  214. <input type="button" value="新增" onClick="location.href='?act=add'" class="btn1" />
  215. </div>
  216. </td>
  217. </tr>
  218. </tfoor>
  219. </table>
  220. </form>
  221. <%Rs.Close:Set Rs=Nothing:Set Rs1=Nothing:Conn.Close:Set Conn=Nothing%>
  222. </div>
  223. <script>
  224. $('.click-open-iframe').galpop({
  225. contentType: 'iframe',
  226. });
  227. </script>
  228. </body>
  229. </html>