deparmod.jsp~9~
资源名称:bangong.rar [点击查看]
上传用户:dlqqsh
上传日期:2021-11-13
资源大小:7840k
文件大小:1k
源码类别:
OA系统
开发平台:
Java
- <%@ page contentType="text/html; charset=GBK" import="officeol.mc.tools.*" %>
- <%request.setCharacterEncoding("GBK"); %>
- <html>
- <head>
- <title>
- 天津市经贸委在线办公
- </title>
- </head>
- <body bgcolor="#ffffff">
- <h1>
- 部门修改
- </h1>
- <p>
- <%
- String message = request.getAttribute("msg")==null?"":request.getAttribute("msg").toString();
- out.print(message);
- String demd5 = request.getParameter("dpm");
- DBConn dbc = new DBConn();
- String dpsql = "select * from deparment where dnmd5 = '"+demd5+"'";
- String dep[][] = dbc.getArray(dpsql);
- %>
- </p>
- <form name="form1" method="post" action="deparModAction.do">
- <table width="90%" border="1">
- <tr>
- <td>用户部门名</td>
- <td><input type="text" name="textfield" value="<%= %>"></td>
- <td> </td>
- </tr>
- <tr>
- <td>用户部门说明</td>
- <td><textarea name="textarea"></textarea></td>
- <td> </td>
- </tr>
- <tr>
- <td colspan="3"><input type="submit" name="Submit" value="提交"></td>
- </tr>
- </table>
- </form>
- <p> </p>
- </body>
- </html>