setfilepriv.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=gb2312"%>
  2. <html>
  3. <head>
  4. <title>授予权限</title>
  5. <%@ include file="../inc/nocache.jsp"%>
  6. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  7. <link rel="stylesheet" href="common.css" type="text/css">
  8. <%
  9. String op = request.getParameter("op");
  10. %>
  11. <script language="javascript">
  12. <!--
  13. function setFilePriv()
  14. {
  15.   var op = "<%=op%>";
  16.   len = department.options.length;
  17.   var priv="",privview="";
  18.   for (i=0; i<len; i++)
  19.   {
  20. if (department.options(i).selected)
  21. {
  22. priv += "|"+department.options(i).value;
  23. if (privview=="")
  24. privview += department.options(i).text;
  25. else
  26. privview += ","+department.options(i).text;
  27. }
  28.   }
  29.   if (priv!="")
  30.    priv += "|"
  31.   if (op=="open")
  32.   {
  33.   window.opener.form1.openpriv.value = priv;
  34.   window.opener.form1.openprivview.value = privview;
  35.   }
  36.   if (op=="modify")
  37.   {
  38.      window.opener.form1.modifypriv.value = priv;
  39.       window.opener.form1.modifyprivview.value = privview;
  40.   }
  41.   window.close();
  42. }
  43. //-->
  44. </script>
  45. </head>
  46. <body bgcolor="#FFFFFF" text="#000000">
  47. <%@ include file="../inc/inc.jsp"%>
  48. <br>
  49. <jsp:useBean id="conn" scope="page" class="com.redmoon.oa.db.Conn"/>
  50. <jsp:setProperty name="conn" property="POOLNAME" value="ttoa"/>
  51. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  52. <table class=p9 width="56%" border="0" cellpadding="0" cellspacing="0" align="center" height="70">
  53.   <tr bgcolor="#C4DAFF"> 
  54.     <td height="22" colspan="2" align="center" class="stable">请选择应赋予权限的用户组</td>
  55.   </tr>
  56.   <tr> 
  57.     <td width="77%" height="222" align="center" bgcolor="#F7F7F7" class="stable"> 
  58.       <select id=department name=department size=2 style="HEIGHT: 200px; WIDTH: 180px" multiple>
  59.         <option value="public">公共</option>
  60.         <%
  61. String sql;
  62. sql = "select id,name from department";
  63. ResultSet rs = null;
  64. try {
  65. rs = conn.executeQuery(sql);
  66. while(rs.next())
  67. {
  68. out.println("<option value="+rs.getString(1)+">"+rs.getString(2)+"</option>");
  69. out.println();
  70. }
  71. }
  72. catch (SQLException e) {
  73. out.print(e.getMessage());
  74. }
  75. finally {
  76. if (rs!=null) {
  77. rs.close();
  78. rs = null;
  79. }
  80. if (conn!=null) {
  81. conn.close();
  82. conn = null;
  83. }
  84. }
  85. %>
  86.       </select> </td>
  87.     <td width="23%" height="222" align="center" bgcolor="#F7F7F7" class="stable"> 
  88.       <input name="button" type=button onClick="setFilePriv()" value="确定"> </td>
  89.   </tr>
  90. </table>
  91. <br>
  92. </body>
  93. </html>