employee.asp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  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. <script type="text/javascript" src="xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  10. </head>
  11. <body>
  12. <div id="man_zone">
  13. <%
  14. Act = Request.QueryString("act")
  15. IF act="save" Then
  16. Isedit=False '用于判断编辑的合理性
  17. Id=Request.Form("id")
  18. If id<>"" and IsNumeric(id) then Isedit=True
  19. em_user=TextEnCode(Request.Form("em_user"))
  20. em_password=TextEnCode(Request.Form("em_password"))
  21. re_password=TextEnCode(Request.Form("re_password"))
  22. em_role=Request.Form("em_role")
  23. em_code=TextEnCode(Request.Form("em_code"))
  24. em_email=TextEnCode(Request.Form("em_email"))
  25. em_tel=TextEnCode(Request.Form("em_tel"))
  26. NullPwd=False
  27. If em_password="" or IsNull(em_password) Then
  28. NullPwd=True
  29. End If
  30. If em_password<>re_password Then
  31. conn.close
  32. Set conn=Nothing
  33. Response.write "<script>alert('两次密码输入不一致');history.back();</script>"
  34. Response.End
  35. End If
  36. If Isedit Then
  37. Set Rs=Server.CreateObject("ADODB.RecordSet")
  38. Rs.Open "Select * From employee where Id="&Id,conn,1,3
  39. If Not Rs.bof and Not Rs.eof Then
  40. Rs("em_user")=em_user
  41. If NullPwd Then Rs("em_password")=Rs("em_password") Else Rs("em_password")=MD5(em_password) End If
  42. Rs("em_role")=em_role
  43. Rs("em_code")=em_code
  44. Rs("em_email")=em_email
  45. Rs("em_tel")=em_tel
  46. Rs.Update
  47. End If
  48. Rs.Close:Set Rs=Nothing:Conn.Close:Set Conn=Nothing
  49. Page = Request.QueryString("Page")
  50. Keys=Server.UrlEnCode(Request.QueryString("Keys"))
  51. Ord=Server.UrlEnCode(Request.QueryString("Ord"))
  52. Response.Redirect "?keys="&Keys&"&Ord="&Ord&"&Page="&Page
  53. Response.End
  54. Else
  55. If NullPwd Then em_password="MTB"&em_code End If
  56. Conn.Execute("Insert into employee(em_user,em_password,em_role,em_code,em_email,em_tel) values('"&em_user&"','"&MD5(em_password)&"',"&em_role&",'"&em_code&"','"&em_email&"','"&em_tel&"')")
  57. Conn.Close:Set Conn=Nothing:Response.Redirect "?"
  58. End If
  59. Conn.Close:Set Conn=Nothing
  60. Response.End
  61. End If'End save
  62. If Act = "add" Or Act = "edit" Then
  63. id = Request.QueryString("id")
  64. isedit = False
  65. If id<>"" And IsNumeric(id) Then isedit=True
  66. If isedit Then
  67. Set Rs = Server.CreateObject("ADODB.RecordSet")
  68. Rs.Open "Select * From employee Where id="&id,Conn,1,1
  69. If Not Rs.Bof And Not Rs.Eof Then
  70. em_user=TextUnCode(Rs("em_user"))
  71. em_role=Rs("em_role")
  72. em_code=TextUnCode(Rs("em_code"))
  73. em_email=TextUnCode(Rs("em_email"))
  74. em_tel=TextUnCode(Rs("em_tel"))
  75. Else
  76. isedit = False
  77. End If
  78. Rs.Close:Set Rs=Nothing
  79. End If
  80. Page = Request.QueryString("Page")
  81. Keys=Server.UrlEnCode(Request.QueryString("Keys"))
  82. Ord=Server.UrlEnCode(Request.QueryString("Ord"))
  83. hrefstr = "?keys="&Keys&"&Ord="&Ord&"&Page="&Page
  84. %>
  85. <form name="form1" method="post" action="<%=hrefstr%>&act=save" onSubmit="return subform2();">
  86. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1" >
  87. <tbody>
  88. <tr>
  89. <th width="8%">用户名</th>
  90. <td><input type="text" id="em_user" name="em_user" value="<%=em_user%>" required class="txt-short" /><input type="hidden" name="id" value="<%=id%>" /></td>
  91. </tr>
  92. <tr>
  93. <th width="8%">密码</th>
  94. <td><input type="password" id="em_password" name="em_password" value="" class="txt-short"/>
  95. </tr>
  96. <tr>
  97. <th width="8%">重复密码</th>
  98. <td><input type="password" id="re_password" name="re_password" value="" class="txt-short"/>
  99. </tr>
  100. <tr>
  101. <th width="8%">工号</th>
  102. <td><input type="text" id="em_code" name="em_code" value="<%=em_code%>" class="txt1" /></td>
  103. </tr>
  104. <tr>
  105. <th width="8%">角色</th>
  106. <td><select name="em_role">
  107. <option value="0">组长</option>
  108. <%
  109. Set Rs1=server.CreateObject("ADODB.RecordSet")
  110. Rs1.Open "Select id,em_user from employee where em_role=0",conn,1,1
  111. Do while not Rs1.bof and not Rs1.eof
  112. %>
  113. <option value="<%=Rs1("id")%>" <%IF Rs1("id")=em_role Then Response.write "selected=""selected"""%>>组长:<%=Rs1("em_user")%></option>
  114. <%
  115. Rs1.moveNext
  116. loop
  117. Rs1.close
  118. Set Rs1=Nothing
  119. %>
  120. </select>
  121. </td>
  122. </tr>
  123. <tr>
  124. <th width="8%">邮箱</th>
  125. <td><input type="text" id="em_email" name="em_email" value="<%=em_email%>" class="txt1" /></td>
  126. </tr>
  127. <tr>
  128. <th width="8%">手机</th>
  129. <td><input type="text" id="em_tel" name="em_tel" value="<%=em_tel%>" class="txt1" /></td>
  130. </tr>
  131. <tr>
  132. <th></th>
  133. <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>
  134. </tr>
  135. </tbody>
  136. </table>
  137. </form>
  138. </div>
  139. </body>
  140. </html>
  141. <%
  142. Response.End
  143. End If'End add
  144. If Act="postchk" Then
  145. Keys = Server.UrlEnCode(Request.QueryString("Keys"))
  146. Ord = Server.UrlEnCode(Request.QueryString("Ord"))
  147. Page = Request.QueryString("Page")
  148. chkact = Request.Form("chkact")
  149. SqlStr = ""
  150. For i = 1 To Request.Form("chkbox").Count
  151. If SqlStr<>"" Then
  152. SqlStr = SqlStr & " Or id="&Request.Form("chkbox")(i)
  153. Else
  154. SqlStr = " Where id="&Request.Form("chkbox")(i)
  155. End If
  156. Next
  157. SqlStr = "Delete From employee"&SqlStr
  158. Conn.Execute(SqlStr):Conn.Close:Set Conn=Nothing
  159. Response.Redirect "?Keys="&Keys&"&Ord="&Ord&"&Page="&Page
  160. Response.End
  161. End If 'End postchk
  162. Keys=Request.QueryString("Keys")
  163. Keyscode=TextEnCode(Keys)
  164. Ord=Request.QueryString("Ord")
  165. Page = Request.QueryString("Page")
  166. Set Rs=Server.CreateObject("ADODB.RecordSet")
  167. Rs.Open "Select id,em_user,em_code,em_role from employee where em_user like '%"&Keyscode&"%' or em_code like '%"&Keyscode&"%' Order By Id Desc",Conn,1,1
  168. Keys=Server.UrlEnCode(Keys)
  169. Ord=Server.UrlEnCode(Ord)
  170. hrefstr = "?keys="&Keys
  171. %>
  172. <form id="form1" method="post" action="?act=postchk&Keys=<%=keys%>&Ord=<%=Ord%>&Page=<%=Page%>" onSubmit="return false" />
  173. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1" >
  174. <thead>
  175. <tr>
  176. <th width="4%"><input type="checkbox" name="chkall" id="chkall" onClick="chkboxall(this,'chkbox')" /></th>
  177. <th width="6%">序号</th>
  178. <th>姓名</th>
  179. <th>工号</th>
  180. <th>角色</th>
  181. <th>操作</th>
  182. </tr>
  183. </thead>
  184. <tbody>
  185. <%
  186. If Not Rs.Bof And Not Rs.Eof Then
  187. Rs.PageSize = 13
  188. If Page = "" Then Page = 1
  189. If Page = "end" Then Page = Rs.PageCount
  190. If Not IsNumeric(Page) Or Page < 1 Then Page = 1
  191. Page = Cint(Page)
  192. If Page > Rs.PageCount Then Page = Rs.PageCount
  193. Rs.AbsolutePage = Page
  194. TempNum = Rs.PageSize * (Page - 1)
  195. Set Rs1=Server.CreateObject("ADODB.RecordSet")
  196. For i=1 To Rs.PageSize
  197. If Rs.Bof Or Rs.Eof Then Exit For
  198. TempNum=TempNum+1:classid=Rs(1)
  199. %>
  200. <tr onMouseOver="this.style.background='#F7FCFF'" onMouseOut="this.style.background='#FFFFFF'">
  201. <td align="center"><input type="checkbox" name="chkbox" value="<%=Rs(0)%>" /></td>
  202. <td align="center"><%=TempNum%></td>
  203. <td align="center"><%=Rs("em_user")%></td>
  204. <td align="center"><%=Rs("em_code")%></td>
  205. <td align="center"><%if Rs("em_role")=0 Then response.write "组长" Else response.write "组员"%>
  206. </td>
  207. <th><a class="ico_edit" href="?act=edit&Keys=<%=keys%>&Ord=<%=Ord%>&Page=<%=Page%>&id=<%=Rs("id")%>">修改</a></th>
  208. </tr>
  209. <%
  210. Rs.MoveNext
  211. Next
  212. Else
  213. If Keys="" Then
  214. %>
  215. <tr>
  216. <td align="center" colspan="6">Sorry,当前暂无信息</td>
  217. </tr>
  218. <%
  219. Else
  220. %>
  221. <tr>
  222. <td align="center" colspan="6"><a href="?">Sorry,没有找到“<%=Keyscode%>”相关的信息,点击返回</a></td>
  223. </tr>
  224. <%
  225. End If
  226. End If
  227. %>
  228. </tbody>
  229. <tfoot>
  230. <tr>
  231. <td colspan="6">
  232. <div class="showpagebox">
  233. <%
  234. If Rs.PageCount > 1 Then
  235. PageName="?Keys="&Keys&"&Ord="&Ord&"&"
  236. Pagelen=3
  237. If Page>1 Then
  238. Response.Write "<a href="""&PageName&"Page=1"">首页</a>"
  239. Response.Write "<a href="""&PageName&"Page="&Page-1&""">上一页</a>"
  240. End If
  241. If Pagelen*2+1 >= Rs.PageCount Then
  242. StartPage=1:EndPage=Rs.PageCount
  243. Else
  244. If Page<=Pagelen+1 Then
  245. StartPage=1
  246. EndPage=Pagelen*2+1
  247. Else
  248. StartPage=Page-Pagelen
  249. EndPage=Page+Pagelen
  250. End If
  251. If Page+Pagelen>Rs.PageCount Then StartPage=Rs.PageCount-Pagelen*2:EndPage=Rs.PageCount
  252. End If
  253. For i = StartPage To EndPage
  254. If i = Page Then
  255. Response.Write "<a class=""current"">"&i&"</a>"
  256. Else
  257. Response.Write "<a href="""&PageName&"Page="&i&""">"&i&"</a>"
  258. End If
  259. Next
  260. If Page<Rs.PageCount Then
  261. If Rs.PageCount - Page > Pagelen Then Response.Write "<a href="""&PageName&"Page="&Rs.PageCount&""">..."&Rs.PageCount&"</a>"
  262. Response.Write "<a href="""&PageName&"Page="&Page+1&""">下一页</a>"
  263. Response.Write "<a href="""&PageName&"Page="&Rs.PageCount&""">尾页</a>"
  264. End If
  265. 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}"" />"
  266. End If
  267. %> </div>
  268. <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>
  269. <div class="postchkbox">
  270. <select id="chkact" name="chkact">
  271. <option value="1">显示</option>
  272. <option value="0">隐藏</option>
  273. <option value="-1">删除</option>
  274. </select>
  275. <input type="button" value="执行" onClick="postchk(1)" class="btn1" />
  276. <input type="button" value="新增" onClick="location.href='?act=add'" class="btn1" />
  277. </div>
  278. </td>
  279. </tr>
  280. </tfoor>
  281. </table>
  282. </form>
  283. <%Rs.Close:Set Rs=Nothing:Set Rs1=Nothing:Conn.Close:Set Conn=Nothing%>
  284. </div>
  285. </body>
  286. </html>