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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8"%>
  2. <%@ page import = "java.util.*"%>
  3. <%@ page import = "cn.js.fan.web.*"%>
  4. <%@ page import = "cn.js.fan.db.*"%>
  5. <%@ page import = "cn.js.fan.util.*"%>
  6. <%@ page import = "com.redmoon.oa.address.*"%>
  7. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  8. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  12. <title>通讯录</title>
  13. <link href="../common.css" rel="stylesheet" type="text/css">
  14. <style type="text/css">
  15. <!--
  16. .STYLE1 {color: #FFFFFF}
  17. -->
  18. </style>
  19. </head>
  20. <table width="80%" border="0" align="center" cellpadding="2" cellspacing="1" class="tableframe" >
  21.  <form action="address.jsp?op=search" name="form1" method="post">
  22.     <tr>
  23.       <td colspan="2" nowrap class="right-title"> 通讯录查询</td>
  24.     </tr>
  25.     <tr>
  26.     <td nowrap bgcolor="#FFFFFF" >分组:</td>
  27.     <td nowrap bgcolor="#FFFFFF" >
  28.       <%
  29.   AddressTypeDb atd = new AddressTypeDb();
  30.   String opts = "";
  31.   int type = ParamUtil.getInt(request, "type");
  32.   String who = privilege.getUser(request);
  33.   if (type==AddressDb.TYPE_PUBLIC)
  34. who = AddressTypeDb.PUBLIC;
  35.   String sql = "select id from address_type where USER_NAME=" + StrUtil.sqlstr(who);
  36.   Iterator ir = atd.list(sql).iterator();
  37.   while (ir.hasNext()) {
  38.  atd = (AddressTypeDb)ir.next();
  39.  opts += "<option value='" + atd.getId() + "'>" + atd.getName() + "</option>";
  40.   }
  41. %>
  42.       &nbsp;
  43.       <select name="typeId" id="typeId" >
  44.    <option value="0">全部</option>
  45.         <%=opts%>
  46.       </select><input name="type" value="<%=type%>" type="hidden">   </td>
  47.    </tr>
  48.     <tr>
  49.       <td nowrap bgcolor="#FFFFFF" >姓名:</td>
  50.       <td bgcolor="#FFFFFF" >&nbsp;
  51.       <input type="text" name="person" size="25"></td>
  52.     </tr>
  53.     <tr>
  54.       <td nowrap bgcolor="#FFFFFF"> 昵称:</td>
  55.       <td bgcolor="#FFFFFF">
  56.       &nbsp;
  57.       <input type="text" name="nickname" size="25" ><input name=mode value="show" type=hidden>      </td>
  58.     </tr>
  59.     <tr>
  60.       <td nowrap bgcolor="#FFFFFF">QQ:</td>
  61.       <td bgcolor="#FFFFFF">&nbsp;
  62.       <input type="text" name="QQ" size="25" ></td>
  63.     </tr>
  64.     <tr>
  65.       <td nowrap bgcolor="#FFFFFF">MSN:</td>
  66.       <td bgcolor="#FFFFFF">&nbsp;
  67.       <input type="text" name="MSN" size="25" ></td>
  68.     </tr>
  69.     <tr>
  70.       <td nowrap bgcolor="#FFFFFF"> 公司名称:</td>
  71.       <td bgcolor="#FFFFFF" >
  72.       &nbsp;
  73.       <input type="text" name="company" size="25" >      </td>
  74.     </tr>
  75.     <tr>
  76.       <td nowrap bgcolor="#FFFFFF">地址:</td>
  77.       <td bgcolor="#FFFFFF">
  78.       &nbsp;
  79.       <input type="text" name="address" size="25" class="BigInput">      </td>
  80.     </tr>
  81.     <tr>
  82.       <td nowrap bgcolor="#FFFFFF">住宅所在地:</td>
  83.       <td bgcolor="#FFFFFF">
  84.       &nbsp;
  85.       <input type="text" name="street" size="25">      </td>
  86.     </tr>
  87.     <tr>
  88.       <td colspan="2" align="center" nowrap bgcolor="#FFFFFF"><span class="STYLE1">
  89.         <input type="submit" value="查 询" title="进行查询" name="button">
  90.       &nbsp; </span></td>
  91.     </tr>
  92.     </form>
  93. </table>