?? searchapp.jsp
字號:
<%@ page import="javax.servlet.http.*,java.sql.*,javax.servlet.*,dbconnection.DBConnection" %>
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Enterprise Resource Information System</title>
</head>
<body>
<form action="./searchapp1">
<%! int clientid ;%>
<%
DBConnection db= new DBConnection();
ResultSet rs=db.executeQuery("select applicantid from applicantsdetails");
%>
<div style="background-color: #C0C0C0">
<p align="center"><b>Enterprise Resource Information System</b></div>
<p align="center">
<b> </b></p>
<p align="center">
<b> SEARCH APPLICANT SKILLS</b> </p>
<p align="left"> </p>
<p align="center"> </p>
<p align="center"> </p>
<div align="center">
<center>
<table border="0" cellpadding="0" align="center" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1" height="62">
<tr>
<td width="50%" height="20">
<p align="right"> SKILLS </td>
<td width="50%" height="20">
<select size="1" name="skills" style="border-style: solid; border-width: 1">
<option selected>JAVA</option>
<option>.NET</option>
</select></td>
</tr>
<tr>
<td width="50%" height="20">
<p align="right">APPLICANT ID </td>
<td width="50%" height="20">
<select size="1" name="d1" style="border-style: solid; border-width: 1">
<% while(rs.next())
{
clientid=rs.getInt(1);
%>
<option> <%=clientid %> </option>
<%
System.out.println(clientid);
}%>
</select></td>
</tr>
<tr>
<td width="50%" height="20">
<p align="right"> EXPERIENCE </td>
<td width="50%" height="20">
<input type="text" name="exp" size="20" style="border-style: solid; border-width: 1"></td>
</tr>
</table>
</center>
</div>
<p>
<input type="submit" value="SEARCH" name="B3" style="border-style: solid; border-width: 1"></p>
<p align="center"> </p>
<p align="center"><a href="recruit.htm">BACK</a></p>
<p align="center"> </p>
</form>
<p align="center"> </p>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -