?? archivessearch.jsp
字號:
<%--
模塊名稱:律所公告
模塊功能:公告顯示
版 本:V1.0
著 作 人:沈文炎 謝永剛
著作日期:2001-09-29
該模塊所需的文件:BulletionAmend.jsp
使用說明:
主要技術說明:
參考文獻:法律事務設計書
修改歷史:= = = = = = = = = = = = = = = = = = = = = = = = = =
修改日期:
修 改 人:
修改理由:
修改出處:
= = = = = = = = = = = = = = = = = = = = = = = = = =
--%>
<%@ page import="java.io.*,java.sql.*" contentType= "text/html; charset=gb2312" %>
<jsp:useBean id="db" class="dbconnection.DbConnection" scope="page" />
<%@ page import="system.*" %>
<%
Security auth = new Security();
String scu_employee_id = (String)session.getAttribute("employee_id");
if(scu_employee_id == null || scu_employee_id.equals(""))
{
response.sendRedirect(response.encodeRedirectURL("../Error/nonlogin.htm"));
}
String modelid = "Ach022"; // 歸檔案卷查詢
int authflag = auth.popedom(scu_employee_id, modelid);
if(authflag == 0 || authflag == 2 || authflag == -1)
{%>
<jsp:forward page="../inc/noauth.jsp" >
</jsp:forward>
<%}%>
<%
ResultSet rs = null;
%>
<html>
<head>
<title>歸檔案件信查詢</title>
<%@ include file="../inc/config.jsp" %>
</head>
<body class="page">
<!--顯示工具條-->
<table width="98%" align="center" cellspacing="1">
<tr>
<td width="90%"><a href="Archives.jsp"><img src="../images/all.gif" height="22" border="0" alt="顯示所有內容"></a><a href="ArchivesSearch.jsp"><img src="../images/query.gif" alt="查詢內容" width="79" height="22" border="0"></a><a href="ArchivesRemove.jsp"><img src="../images/trim.gif" width="79" height="22" border="0"></a></td>
<td width="10%" align="right"><img src="../images/back.gif" width="50" height="22" onClick="window.history.back()" style="cursor:hand"></td>
</tr>
</table>
<table width="98%" background="../images/line.gif" border="0" cellspacing="0" cellpadding="0" height="12" align="center">
<tr>
<td> </td>
</tr>
</table>
<!--顯示工具條結束-->
<form name="myForm" method="post" action="ArchivesSearchInfo.jsp">
<table width="98%" align="center" border="0" cellspacing="1" cellpadding="5" class="table_bg">
<tr>
<td height="11" width="152" align="right" class="title_bg"> 檔案編號:</td>
<td height="-2" width="596" class="tr_bg1">
<input name="txtArchiveID" size="25" class="input">
</td>
</tr>
<tr>
<td align=right height=28 width=152 class="title_bg"> 案由:</td>
<td height=28 class="tr_bg1" width="596">
<input name="txtCaseReason" size="25" class="input">
</td>
</tr>
<tr>
<td height="12" width="152" align="right" class="title_bg">客戶名稱:</td>
<td height="0" width="596" class="tr_bg1">
<input name="txtCustomer" size="25" class="input">
</td>
</tr>
<tr>
<td align="right" height="28" width="152" class="title_bg"> 案件類型:</td>
<td height="28" width="596" class="tr_bg1">
<select name="txtCaseType" size="1" class="select" >
<option value=""> </option>
<option value="ssaj">訴訟案件</option>
<option value="fssaj">非訴訟案件</option>
</select>
</td>
</tr>
<tr>
<td align=right height=14 width=152 class="title_bg">承辦律師:</td>
<td height=14 width=596 class="tr_bg1">
<select name="txtLawyer" class="select">
<option value=""></option>
<%
rs = db.executeQuery("select employee_id,employee_name from t_employee where duty like '%律師' or duty='主任' or duty='合伙人'");
while (rs.next()) {
%>
<option value=<%=rs.getString("employee_id")%>><%=rs.getString("employee_name")%></option>
<%}%>
</select>
</td>
</tr>
<tr>
<td align=right height=14 width=152 class="title_bg"> 歸檔日期:</td>
<td height=14 width=596 class="tr_bg1"> 自
<input type="text" name="txtFromDate" maxlength="10" size="10" value="" class="input" readOnly>
<img src="../images/datetime.gif" border="0" align="absmiddle"
alt="彈出日歷下拉菜單" onClick="fPopUpCalendarDlg(fromDate);return false" width="16" height="16">
至
<input type="text" name="txtTooDate" maxlength="10" size="10" value="" class="input" readOnly>
<img src="../images/datetime.gif" border="0" align="absmiddle"
alt="彈出日歷下拉菜單" onClick="fPopUpCalendarDlg(toDate);return false" width="16" height="16">
</td>
</tr>
</table>
<br>
<div align="center">
<input type="submit" value="查詢" name="btnQuery" class="button" onclick="window.close()">
</div>
</form>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -