x_addok_admin_user.jsp
上传用户:zghglow
上传日期:2022-08-09
资源大小:27227k
文件大小:3k
源码类别:

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

开发平台:

JavaScript

  1. <%@ page contentType="text/html;charset=gb2312"%> 
  2. <html>
  3. <head>
  4. <title>翔鹭石化企业(厦门)有限公司_权限分配</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  6. <link rel="stylesheet" href="../include/main.css" type="text/css">
  7. </head>
  8. <body bgcolor="#FFFFFF" text="#000000">
  9. <%@page import="java.sql.*"%>
  10. <%@include file="../include/db_conn.jsp"%>
  11. <%@include file="../include/const.jsp"%>
  12. <%!String admin_dept;%>
  13. <%!String admin_username;%>
  14. <%!String admin_password;%>
  15. <%String admin_column=null;%>
  16. <%
  17. int intRowCount; //记录总数
  18. String admin_type = "65";
  19. //判断用户名是否填写
  20. admin_username   =request.getParameter("admin_username");
  21. admin_password   =request.getParameter("admin_password");
  22. try{
  23. String[] column_id_values=request.getParameterValues("ra01");
  24. for(int i = 0; i < column_id_values.length; i++) {
  25. admin_column=column_id_values[i];
  26. }
  27. }catch(Exception e){
  28. }
  29. admin_type = admin_column;
  30. if (admin_type.equals("65")) admin_dept ="业务查询";
  31. if (admin_type.equals("66")) admin_dept ="系统管理员";
  32. if(admin_column==null) admin_column="";
  33. admin_column="0,"+admin_column+",0";
  34. //判断用户名是否已经有人注册了
  35. sql="select admin_id from tbl_admin_user where admin_username='"+admin_username+"'";
  36. sql=getGBString(sql);
  37. rs=smt.executeQuery(sql);
  38. rs.next();
  39. intRowCount = rs.getRow();
  40. rs.close();
  41. if(intRowCount<1){
  42. //注册信息保存到数据库
  43. sql="insert into tbl_admin_user(admin_username,admin_password,admin_dept,admin_column,admin_type) values('"+admin_username+"','"+admin_password+"','"+admin_dept+"','"+admin_column+"','"+admin_type+"')";
  44. //sql=getGBString(sql);
  45. //out.println(sql);
  46. smt.executeUpdate(sql);
  47. }else{
  48. out.println("<script language='javascript'>alert('该用户已经存在,请重新分配用户名!');history.back();</script>");
  49. }
  50. %>
  51. <%@include file="../include/header.jsp"%>
  52. <br>
  53. <table width="700" border="0" cellspacing="1" cellpadding="1" bgcolor="#f0f0f0" align="center">
  54.   <tr> 
  55.     <td> 
  56.       <table width="700" border="0" cellspacing="0" cellpadding="0" align="center">
  57.         <tr align="left"> 
  58.           <td height="28" >&nbsp;&nbsp;<font face="webdings" color="#666666">8</font><a href="customer_list.jsp">回主菜单</a> <img src="../images/pixel.gif" width="235" height="1"><span style="FONT-SIZE: 14px"><b><font color="#666666">新增系统用户</font></b></span></td>
  59.         </tr>
  60.         <tr align="center"> 
  61.           <td height="120" bgcolor="#ffffff"><b><font color=red>添加成功!</font></b><br><br><a href='x_list_admin_user.jsp'>浏览权限</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href='x_add_admin_user.jsp'>增加增加权限分配</a></td>
  62.         </tr>
  63.       </table>
  64.     </td>
  65.   </tr>
  66.   <tr> 
  67.     <td height="10"></td>
  68.   </tr>
  69. </table>
  70. <br>
  71. <%@include file="../include/bottom.jsp"%>
  72. </body>
  73. </html>