1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
<div id="mainContent">
<form name="formMidi" method="post" action="./ServletControle.do" >
<p> </p>
<p> </p>
<p> </p>
<table width="800" border="1" cellspacing="0" cellpadding="0" align="center">
<tr>
<td>Site:</td>
<td colspan="4"><div align="left">
<select name="locsite" size="2" id="locsite" autocomplete="on">
<%
for (int i=0; i<listLocSite.size(); i++) {
String itemls= (String) listLocSite.get(i).getLs_nom() ;
String pkitemls = (String) listLocSite.get(i).getPk_ls_char();
%>
<option value="<%=pkitemls%>"><%=itemls%></option>
<% } %>
</select></div></td>
</tr>
<tr>
<td height="29">Evénement:</td>
<td>
<div align="left">
<select name="Evenement" id="Evenement">
<option value="5">Reveillon de Noël</option>
<option value="4">Noël</option>
<option value="6">Reveillon du nouvel an</option>
<option value="2">Nouvel an</option>
</select>
</div></td>
<td><div align="left">Type:</div></td>
<td><div align="left">
<select name="Ntt2" size="1" id="Ntt2" autocomplete="on">
<%
for (int i=0; i<tt.size(); i++) {
//String itemt= (String) tt.get(i).toString();
%>
<option value="<%=(String) tt.get(i).toString()%>"><%=(String) tt.get(i).toString()%></option>
<% } %>
</select>
</div></td>
<td><input type="submit" name="RechercherE" id="Rechercher" value="Rechercher"></td>
</tr>
<tr>
<td height="26">Numéro:</td>
<td>
<label>
<div align="left">
<select name="N" size="1" id="N" autocomplete="on">
<%
for (int i=0; i<numero.size(); i++) {
%>
<option value="<%=(String) numero.get(i).toString()%>"><%=(String) numero.get(i).toString()%></option>
<% } %>
</select>
</div>
</label> </td>
<td width="82" rowspan="3"><div align="left">Type:</div></td>
<td width="352" rowspan="3"><label>
<div align="left">
<select name="Ntt" size="1" id="Ntt" autocomplete="on">
<%
for (int i=0; i<tt.size(); i++) {
%>
<option value="<%=(String) tt.get(i).toString()%>"><%=(String) tt.get(i).toString()%></option>
<% } %>
</select>
</div>
</label> </td>
<td width="352" rowspan="3"><input type="submit" name="RechercherN" id="Rechercher" value="Rechercher"></td>
</tr>
<tr>
<td width="150" height="28">Semaine:</td>
<td width="216">
<div align="left">
<label>
<select name="NSemaine" size="1" id="NSemaine" autocomplete="on">
<%
for (int i=0; i<numerodesemaine.size(); i++) {
String itemns= (String) numerodesemaine.get(i).toString();
%>
<option value="<%=itemns%>"><%=itemns%></option>
<% } %>
</select>
</label>
</div> </td>
</tr>
<tr>
<td>Jours:</td>
<td><label>
<div align="left">
<select name="Njour" size="1" id="Njour" autocomplete="on">
<%
for (int i=0; i<numerodejour.size(); i++) {
//String itemnj= (String) numerodejour.get(i).toString();
%>
<option value="<%=(String) numerodejour.get(i).toString()%>"><%=(String) numerodejour.get(i).toString()%></option>
<% } %>
</select>
</div>
</label> </td>
</tr>
</table>
<input type="hidden" name = "action" value="actionpcCalListMidi">
<p> </p>
</form>
</div> |
Partager