power.asp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  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 = "save" Then
  15. isedit = False
  16. id = Request.Form("id")
  17. If id<>"" And IsNumeric(id) Then isedit = True
  18. powername = TextEnCode(Request.Form("powername"))
  19. powercontent = Request.Form("powercontent")
  20. If isedit Then
  21. If Conn.Execute("Select Count(id) From power Where powername = '"&powername&"' And id<>"&id)(0)>0 Then Response.Write "<script>alert('Sorry,该权限名称已经存在,请检查更换');history.back()</script>":Conn.Close:Set Conn=Nothing:Response.End
  22. Set Rs = Server.CreateObject("ADODB.RecordSet")
  23. Rs.Open "Select powername,powercontent,powerstate From power Where id="&id,Conn,1,3
  24. If Not Rs.Bof And Not Rs.Eof Then
  25. Rs(0) = powername
  26. Rs(1) = powercontent
  27. Else
  28. Rs.AddNew
  29. Rs(0) = powername
  30. Rs(1) = powercontent
  31. Rs(2) = 1
  32. End If
  33. Rs.Update:Rs.Close:Set Rs=Nothing:Conn.Close:Set Conn=Nothing
  34. Page = Request.QueryString("Page")
  35. Keys=Server.UrlEnCode(Request.QueryString("Keys"))
  36. Ord=Server.UrlEnCode(Request.QueryString("Ord"))
  37. Response.Redirect "?keys="&Keys&"&Ord="&Ord&"&Page="&Page
  38. Else
  39. If Conn.Execute("Select Count(id) From power Where powername = '"&powername&"'")(0)>0 Then Response.Write "<script>alert('Sorry,该权限名称已经存在,请检查更换');history.back()</script>":Conn.Close:Set Conn=Nothing:Response.End
  40. Conn.Execute("Insert into power(powername,powercontent,powerstate) values('"&powername&"','"&powercontent&"',1)")
  41. Conn.Close:Set Conn=Nothing:Response.Redirect "?"
  42. End If
  43. Conn.Close:Set Conn=Nothing
  44. Response.End
  45. End If 'end save
  46. If Act = "add" Or Act = "edit" Then
  47. id = Request.QueryString("id")
  48. isedit = False
  49. If id<>"" And IsNumeric(id) Then isedit=True
  50. If isedit Then
  51. Set Rs = Server.CreateObject("ADODB.RecordSet")
  52. Rs.Open "Select powername,powercontent From power Where id="&id,Conn,1,1
  53. If Not Rs.Bof And Not Rs.Eof Then
  54. powername=Rs(0):powercontent=Rs(1)
  55. Else
  56. isedit = False
  57. End If
  58. Rs.Close:Set Rs=Nothing:Conn.Close:Set Conn=Nothing
  59. End If
  60. Page = Request.QueryString("Page")
  61. Keys=Server.UrlEnCode(Request.QueryString("Keys"))
  62. Ord=Server.UrlEnCode(Request.QueryString("Ord"))
  63. hrefstr = "?keys="&Keys&"&Ord="&Ord&"&Page="&Page
  64. %>
  65. <form name="form1" method="post" action="<%=hrefstr%>&act=save">
  66. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  67. <tbody>
  68. <tr>
  69. <th width="8%">权限名称</th>
  70. <td><input type="text" id="powername" name="powername" value="<%=powername%>" class="txt1" /><input type="hidden" name="id" value="<%=id%>" /></td>
  71. </tr>
  72. <tr>
  73. <th width="8%">可用权限</th>
  74. <td>
  75. <!--<label for="chkall" style="display:block;margin:5px 0;"><input type="checkbox" id="chkall" onClick="chkboxall(this,'powercontent')" style="float:left;" />全选 / 反选</label>-->
  76. <fieldset>
  77. <legend>信息管理</legend>
  78. <input type="checkbox" id="powerchk1" name="powercontent" value="单页管理" <%If Instr(powercontent,"单页管理")>0 Then Response.Write "checked=""checked"""%> /><label for="powerchk1">单页管理</label>
  79. <input type="checkbox" id="powerchk2" name="powercontent" value="分类管理" <%If Instr(powercontent,"分类管理")>0 Then Response.Write "checked=""checked"""%> /><label for="powerchk2">分类管理</label>
  80. <input type="checkbox" id="powerchk3" name="powercontent" value="专题管理" <%If Instr(powercontent,"专题管理")>0 Then Response.Write "checked=""checked"""%> /><label for="powerchk3">专题管理</label>
  81. <input type="checkbox" id="powerchk4" name="powercontent" value="信息管理" <%If Instr(powercontent,"信息管理")>0 Then Response.Write "checked=""checked"""%> /><label for="powerchk4">信息管理</label><br />
  82. </fieldset>
  83. <fieldset>
  84. <legend>售后管理</legend>
  85. <input type="checkbox" id="powerchk21" name="powercontent" value="售后_单页" <%If Instr(powercontent,"售后_单页")>0 Then Response.Write "checked=""checked"""%> /><label for="powerchk21">单页管理</label>
  86. <input type="checkbox" id="powerchk22" name="powercontent" value="售后_信息" <%If Instr(powercontent,"售后_信息")>0 Then Response.Write "checked=""checked"""%> /><label for="powerchk22">信息管理</label><br />
  87. </fieldset>
  88. </td>
  89. </tr>
  90. <tr>
  91. <th></th>
  92. <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>
  93. </tr>
  94. </tbody>
  95. </table>
  96. </form>
  97. </div>
  98. </body>
  99. </html>
  100. <%
  101. Response.End
  102. End If 'End add
  103. If Act="postchk" Then
  104. Keys = Server.UrlEnCode(Request.QueryString("Keys"))
  105. Ord = Server.UrlEnCode(Request.QueryString("Ord"))
  106. Page = Request.QueryString("Page")
  107. chkact = Request.Form("chkact")
  108. SqlStr = ""
  109. For i = 1 To Request.Form("chkbox").Count
  110. If SqlStr<>"" Then
  111. SqlStr = SqlStr & " Or id="&Request.Form("chkbox")(i)
  112. Else
  113. SqlStr = " Where id="&Request.Form("chkbox")(i)
  114. End If
  115. Next
  116. Select Case chkact
  117. Case "0":SqlStr = "Update power Set powerstate="&chkact&SqlStr
  118. Case "1":SqlStr = "Update power Set powerstate="&chkact&SqlStr
  119. Case Else:SqlStr = "Delete From power"&SqlStr
  120. End Select
  121. Conn.Execute(SqlStr):Conn.Close:Set Conn=Nothing
  122. Response.Redirect "?Keys="&Keys&"&Ord="&Ord&"&Page="&Page
  123. Response.End
  124. End If 'End postchk
  125. Keys=Request.QueryString("Keys")
  126. Keyscode=TextEnCode(Keys)
  127. Ord=Request.QueryString("Ord")
  128. Page = Request.QueryString("Page")
  129. If Ord="powername" Or Ord="powername Desc" Or Ord="powerstate" Or Ord="powerstate Desc" Or Ord="powercontent" Or Ord="powercontent Desc" Then
  130. OrdStr=Ord&","
  131. Else
  132. OrdStr=""
  133. End If
  134. Set Rs=Server.CreateObject("ADODB.RecordSet")
  135. Rs.Open "Select id,powername,powercontent,powerstate From power Where id<>1 And (powername like '%"&Keyscode&"%' Or powercontent like '%"&Keyscode&"%') Order By "&OrdStr&"Id Desc",Conn,1,1
  136. Keys=Server.UrlEnCode(Keys)
  137. Ord=Server.UrlEnCode(Ord)
  138. hrefstr = "?keys="&Keys
  139. %>
  140. <form id="form1" method="post" action="?act=postchk&Keys=<%=keys%>&Ord=<%=Ord%>&Page=<%=Page%>" onSubmit="return false" />
  141. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  142. <thead>
  143. <tr>
  144. <th width="4%"><input type="checkbox" name="chkall" id="chkall" onClick="chkboxall(this,'chkbox')" /></th>
  145. <th width="6%">序号</th>
  146. <th width="20%"><a href="<%=hrefstr%><%If ord="powername" Then Response.Write "&ord=powername+Desc" Else Response.Write "&ord=powername"%>">权限名称<%If Ord="powername" Then Response.Write "↓" Else If Ord="powername+Desc" Then Response.Write "↑"%></a></th>
  147. <th width="54%"><a href="<%=hrefstr%><%If ord="powercontent" Then Response.Write "&ord=powercontent+Desc" Else Response.Write "&ord=powercontent"%>">可用权限<%If Ord="powercontent" Then Response.Write "↓" Else If Ord="powercontent+Desc" Then Response.Write "↑"%></a></th>
  148. <th width="8%"><a href="<%=hrefstr%><%If ord="powerstate" Then Response.Write "&ord=powerstate+Desc" Else Response.Write "&ord=powerstate"%>">状态<%If Ord="powerstate" Then Response.Write "↓" Else If Ord="powerstate+Desc" Then Response.Write "↑"%></a></th>
  149. <th width="8%">操作</th>
  150. </tr>
  151. </thead>
  152. <tbody>
  153. <%
  154. If Not Rs.Bof And Not Rs.Eof Then
  155. Rs.PageSize = 10
  156. If Page = "" Then Page = 1
  157. If Page = "end" Then Page = Rs.PageCount
  158. If Not IsNumeric(Page) Or Page < 1 Then Page = 1
  159. Page = Cint(Page)
  160. If Page > Rs.PageCount Then Page = Rs.PageCount
  161. Rs.AbsolutePage = Page
  162. TempNum = Rs.PageSize * (Page - 1)
  163. Set Rs1=Server.CreateObject("ADODB.RecordSet")
  164. For i=1 To Rs.PageSize
  165. If Rs.Bof Or Rs.Eof Then Exit For
  166. TempNum=TempNum+1
  167. %>
  168. <tr onMouseOver="this.style.background='#F7FCFF'" onMouseOut="this.style.background='#FFFFFF'">
  169. <td align="center"><input type="checkbox" name="chkbox" value="<%=Rs(0)%>" /></td>
  170. <td align="center"><%=TempNum%></td>
  171. <td align="center"><%=Rs(1)%></td>
  172. <td align="center"><%=Rs(2)%></td>
  173. <td align="center"><%If Rs(3)=1 Then Response.Write "正常" Else Response.Write "停用" End If%></td>
  174. <td align="center"><a href="?Keys=<%=keys%>&Ord=<%=Ord%>&Page=<%=Page%>&act=edit&id=<%=Rs(0)%>" class="ico_edit">修改</a></td>
  175. </tr>
  176. <%
  177. Rs.MoveNext
  178. Next
  179. Else
  180. If Keys="" Then
  181. %>
  182. <tr>
  183. <td align="center" colspan="7">Sorry,当前暂无权限</td>
  184. </tr>
  185. <%
  186. Else
  187. %>
  188. <tr>
  189. <td align="center" colspan="7"><a href="?">Sorry,没有找到“<%=Keyscode%>”相关的权限,点击返回</a></td>
  190. </tr>
  191. <%
  192. End If
  193. End If
  194. %>
  195. </tbody>
  196. <tfoot>
  197. <tr>
  198. <td colspan="7">
  199. <div class="showpagebox">
  200. <%
  201. If Rs.PageCount > 1 Then
  202. PageName="?Keys="&Keys&"&Ord="&Ord&"&"
  203. Pagelen=3
  204. If Page>1 Then
  205. Response.Write "<a href="""&PageName&"Page=1"">首页</a>"
  206. Response.Write "<a href="""&PageName&"Page="&Page-1&""">上一页</a>"
  207. End If
  208. If Pagelen*2+1 >= Rs.PageCount Then
  209. StartPage=1:EndPage=Rs.PageCount
  210. Else
  211. If Page<=Pagelen+1 Then
  212. StartPage=1
  213. EndPage=Pagelen*2+1
  214. Else
  215. StartPage=Page-Pagelen
  216. EndPage=Page+Pagelen
  217. End If
  218. If Page+Pagelen>Rs.PageCount Then StartPage=Rs.PageCount-Pagelen*2:EndPage=Rs.PageCount
  219. End If
  220. For i = StartPage To EndPage
  221. If i = Page Then
  222. Response.Write "<a class=""current"">"&i&"</a>"
  223. Else
  224. Response.Write "<a href="""&PageName&"Page="&i&""">"&i&"</a>"
  225. End If
  226. Next
  227. If Page<Rs.PageCount Then
  228. If Rs.PageCount - Page > Pagelen Then Response.Write "<a href="""&PageName&"Page="&Rs.PageCount&""">..."&Rs.PageCount&"</a>"
  229. Response.Write "<a href="""&PageName&"Page="&Page+1&""">下一页</a>"
  230. Response.Write "<a href="""&PageName&"Page="&Rs.PageCount&""">尾页</a>"
  231. End If
  232. 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}"" />"
  233. End If
  234. %> </div>
  235. <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>
  236. <div class="postchkbox">
  237. <select id="chkact" name="chkact">
  238. <option value="1">正常</option>
  239. <option value="0">停用</option>
  240. <option value="-1">删除</option>
  241. </select>
  242. <input type="button" value="执行" onClick="postchk(2)" class="btn1" />
  243. </div>
  244. </td>
  245. </tr>
  246. </tfoor>
  247. </table>
  248. </form>
  249. <%Rs.Close:Set Rs=Nothing:Conn.Close:Set Conn=Nothing%>
  250. </div>
  251. </body>
  252. </html>